You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
734 B
27 lines
734 B
import { assert } from "chai"; |
|
import { createMatchPathAsync } from "../src/match-path-async"; |
|
import * as Tests from "./data/match-path-data"; |
|
|
|
describe("match-path-async", () => { |
|
Tests.tests.forEach(t => |
|
it(t.name, done => { |
|
const matchPath = createMatchPathAsync( |
|
t.absoluteBaseUrl, |
|
t.paths, |
|
t.mainFields, |
|
t.addMatchAll |
|
); |
|
matchPath( |
|
t.requestedModule, |
|
(_path, callback) => callback(undefined, t.packageJson), |
|
(path, callback) => |
|
callback(undefined, t.existingFiles.indexOf(path) !== -1), |
|
t.extensions, |
|
(_err, result) => { |
|
assert.equal(result, t.expectedPath); |
|
done(); |
|
} |
|
); |
|
}) |
|
); |
|
});
|
|
|