Skip to content

Commit

Permalink
fix: revert 47793be
Browse files Browse the repository at this point in the history
  • Loading branch information
paambaati authored Jun 4, 2024
1 parent 47793be commit e512c4b
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions bin/test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { platform } from 'node:os';
import { pathToFileURL } from 'node:url';
import { assert } from '@japa/assert';
import { configure, processCLIArgs, run } from '@japa/runner';

Expand All @@ -16,11 +14,6 @@ configure({
},
],
plugins: [assert()],
importer: (filePath) => {
return platform() === 'win32'
? import(pathToFileURL(filePath.toString()).href)
: import(filePath.toString());
},
});

await run();

0 comments on commit e512c4b

Please # to comment.