Makelore 2.0 initial clean snapshot
This commit is contained in:
17
vitest.electron.config.ts
Normal file
17
vitest.electron.config.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { defineConfig } from 'vitest/config';
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
environment: 'node',
|
||||
include: ['tests/electron-runtime/**/*.test.ts'],
|
||||
fileParallelism: false,
|
||||
maxWorkers: 1,
|
||||
pool: 'threads',
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
'@electron': resolve(__dirname, 'electron'),
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user