Permalink
Cannot retrieve contributors at this time
70 lines (67 sloc)
1.89 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/tsconfig-paths/src/__tests__/mapping-entry.test.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { getAbsoluteMappingEntries } from "../mapping-entry"; | |
import { join } from "path"; | |
describe("mapping-entry", () => { | |
it("should change to absolute paths and sort in longest prefix order", () => { | |
const result = getAbsoluteMappingEntries( | |
"/absolute/base/url", | |
{ | |
"*": ["/foo1", "/foo2"], | |
"longest/pre/fix/*": ["/foo2/bar"], | |
"pre/fix/*": ["/foo3"], | |
}, | |
true | |
); | |
// assert.deepEqual(result, [ | |
// { | |
// pattern: "longest/pre/fix/*", | |
// paths: [join("/absolute", "base", "url", "foo2", "bar")], | |
// }, | |
// { | |
// pattern: "pre/fix/*", | |
// paths: [join("/absolute", "base", "url", "foo3")], | |
// }, | |
// { | |
// pattern: "*", | |
// paths: [ | |
// join("/absolute", "base", "url", "foo1"), | |
// join("/absolute", "base", "url", "foo2"), | |
// ], | |
// }, | |
// ]); | |
expect(result).toEqual([ | |
{ | |
pattern: "longest/pre/fix/*", | |
paths: [join("/absolute", "base", "url", "foo2", "bar")], | |
}, | |
{ | |
pattern: "pre/fix/*", | |
paths: [join("/absolute", "base", "url", "foo3")], | |
}, | |
{ | |
pattern: "*", | |
paths: [ | |
join("/absolute", "base", "url", "foo1"), | |
join("/absolute", "base", "url", "foo2"), | |
], | |
}, | |
]); | |
}); | |
it("should should add a match-all pattern when requested", () => { | |
let result = getAbsoluteMappingEntries("/absolute/base/url", {}, true); | |
// assert.deepEqual(result, [ | |
// { | |
// pattern: "*", | |
// paths: [join("/absolute", "base", "url", "*")], | |
// }, | |
// ]); | |
expect(result).toEqual([ | |
{ | |
pattern: "*", | |
paths: [join("/absolute", "base", "url", "*")], | |
}, | |
]); | |
result = getAbsoluteMappingEntries("/absolute/base/url", {}, false); | |
// assert.deepEqual(result, []); | |
expect(result).toEqual([]); | |
}); | |
}); |