File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 6
6
" @radix-ui/**" ,
7
7
" react-router" ,
8
8
" stream/consumers" ,
9
- " node:stream/consumers"
9
+ " node:stream/consumers" ,
10
+ " node:test"
10
11
],
11
12
"tailwindCSS.experimental.classRegex" : [[" cn\\ (([^)]*)\\ )" ]]
12
13
}
Original file line number Diff line number Diff line change
1
+ import 'dotenv/config'
2
+ import 'source-map-support/register.js'
1
3
import './setup-env-vars.ts'
2
- import { afterAll , afterEach , expect } from 'vitest'
4
+
3
5
import { installGlobals } from '@remix-run/node'
4
- import { matchers } from './matchers.cjs'
5
- import 'dotenv/config'
6
6
import fs from 'fs'
7
+ import { afterAll , afterEach , expect } from 'vitest'
8
+ import { prisma } from '~/utils/db.server.ts'
9
+ import { matchers } from './matchers.cjs'
7
10
import { BASE_DATABASE_PATH , DATABASE_PATH } from './paths.ts'
8
11
import { deleteAllData } from './utils.ts'
9
- import { prisma } from '~/utils/db.server.ts'
10
12
11
13
expect . extend ( matchers )
12
14
You can’t perform that action at this time.
0 commit comments