We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 297b396 commit 6cfa396Copy full SHA for 6cfa396
test/base.test.ts
@@ -897,7 +897,7 @@ describe('Base', () => {
897
assert.equal(spy.firstCall.thisValue.options.namespace, 'mocha');
898
assert.equal(
899
spy.firstCall.thisValue.options.resolved,
900
- pathToFileURL(createRequire(import.meta.url).resolve(stubPath)).href,
+ createRequire(import.meta.url).resolve(stubPath),
901
);
902
});
903
@@ -950,7 +950,7 @@ describe('Base', () => {
950
spy = sinonSpy();
951
dummy.resolved = _filename;
952
stubPath = './fixtures/generator-mocha';
953
- resolvedStub = pathToFileURL(require.resolve(stubPath)).href;
+ resolvedStub = require.resolve(stubPath);
954
const module = await import(resolvedStub);
955
LocalDummy = module.default;
956
LocalDummy.prototype.exec = spy;
0 commit comments