Skip to content

Commit 23233be

Browse files
committedAug 1, 2023
fix(ci): attempt to fix test
1 parent 92f1d4b commit 23233be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

Diff for: ‎test/util.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { fileURLToPath } from 'node:url'
22
import { setup } from '@nuxt/test-utils'
3+
import { joinURL } from 'ufo'
34

4-
export const r = (s: string = '') => fileURLToPath(new URL('./fixture/basic/' + s, import.meta.url))
5+
export const r = (s: string = '') => fileURLToPath(new URL(joinURL('./fixture/basic', s), import.meta.url))
56

67
export const setupNuxtTailwind = (tailwindcss = {}) => {
78
return setup({

0 commit comments

Comments
 (0)
Please sign in to comment.