We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba48335 commit f455e35Copy full SHA for f455e35
tests/helpers.spec.ts
@@ -7,6 +7,7 @@
7
* file that was distributed with this source code.
8
*/
9
10
+import slash from 'slash'
11
import ts from 'typescript'
12
import { join } from 'node:path'
13
import { test } from '@japa/runner'
@@ -34,7 +35,7 @@ test.group('Helpers | Parse config', () => {
34
35
await fs.create('foo.ts', '')
36
37
const result = parseConfig(fs.baseUrl, ts)
- assert.deepEqual(result?.fileNames, [join(fs.basePath, 'foo.ts')])
38
+ assert.deepEqual(result?.fileNames, [slash(join(fs.basePath, 'foo.ts'))])
39
})
40
41
0 commit comments