Sha256: 0eeee227b6cc9f0f6c38a25318aef9c02e4a21e6c1f10565b44c835680699ade

Contents?: true

Size: 753 Bytes

Versions: 53

Compression:

Stored size: 753 Bytes

Contents

import { createMatchPathAsync } from "../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);
          expect(result).toBe(t.expectedPath);
          done();
        }
      );
    })
  );
});

Version data entries

53 entries across 53 versions & 3 rubygems

Version Path
rapid_stack-0.2.0 templates/frontend/node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
rapid_stack-0.1.1 templates/FrontEnd/node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
rapid_stack-0.1.0 templates/FrontEnd/node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.60 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.59 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.58 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.57 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.56 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.55 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.54 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.53 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.52 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.51 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.50 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.49 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.48 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.47 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.46 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.45 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts
immosquare-cleaner-0.1.44 node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts