File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,11 @@ const promiseMigration = '1414549381268_names_promise.js';
15
15
const reverseMigration = '1739900132875_names_reversed.js' ;
16
16
const migrationsTable = 'pgmigrations' ;
17
17
18
- const actionsCallback = await import ( `./${ callbackMigration } ` ) ;
19
- const actionsPromise = await import ( `./${ promiseMigration } ` ) ;
20
- const reversePromise = await import ( `./${ reverseMigration } ` ) ;
18
+ const actionsCallback = await import (
19
+ /* @vite -ignore */ `./${ callbackMigration } `
20
+ ) ;
21
+ const actionsPromise = await import ( /* @vite -ignore */ `./${ promiseMigration } ` ) ;
22
+ const reversePromise = await import ( /* @vite -ignore */ `./${ reverseMigration } ` ) ;
21
23
22
24
describe ( 'migration' , ( ) => {
23
25
const dbMock = { } as DBConnection ;
You can’t perform that action at this time.
0 commit comments