Skip to content

Commit 6cfa396

Browse files
authored
fix: adjust tests
1 parent 297b396 commit 6cfa396

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/base.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ describe('Base', () => {
897897
assert.equal(spy.firstCall.thisValue.options.namespace, 'mocha');
898898
assert.equal(
899899
spy.firstCall.thisValue.options.resolved,
900-
pathToFileURL(createRequire(import.meta.url).resolve(stubPath)).href,
900+
createRequire(import.meta.url).resolve(stubPath),
901901
);
902902
});
903903

@@ -950,7 +950,7 @@ describe('Base', () => {
950950
spy = sinonSpy();
951951
dummy.resolved = _filename;
952952
stubPath = './fixtures/generator-mocha';
953-
resolvedStub = pathToFileURL(require.resolve(stubPath)).href;
953+
resolvedStub = require.resolve(stubPath);
954954
const module = await import(resolvedStub);
955955
LocalDummy = module.default;
956956
LocalDummy.prototype.exec = spy;

0 commit comments

Comments
 (0)