Sha256: 06362410b5d19031a1b6d806755a512258be64a0d955a4b40104ea9b0b75ceeb
Contents?: true
Size: 627 Bytes
Versions: 53
Compression:
Stored size: 627 Bytes
Contents
import { createMatchPath } from "../match-path-sync"; import * as Tests from "./data/match-path-data"; describe("match-path-sync", () => { Tests.tests.forEach((t) => it(t.name, () => { const matchPath = createMatchPath( t.absoluteBaseUrl, t.paths, t.mainFields, t.addMatchAll ); const result = matchPath( t.requestedModule, (_: string) => t.packageJson, (name: string) => t.existingFiles.indexOf(name) !== -1, t.extensions ); // assert.equal(result, t.expectedPath); expect(result).toBe(t.expectedPath); }) ); });
Version data entries
53 entries across 53 versions & 3 rubygems