mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 07:04:04 -05:00
Port to vitest. Port everything to typescript. Remove chai, mocha and chai-as-promised. Adds some docs.
12 lines
364 B
TypeScript
12 lines
364 B
TypeScript
// eslint-disable-next-line node/no-unpublished-import
|
|
import {defineConfig} from 'vitest/config';
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['test/**/*.ts'],
|
|
exclude: ['test/_*.ts', 'test/utils.ts'],
|
|
setupFiles: ['/test/_setup-fake-aws.ts', '/test/_setup-log.ts'],
|
|
},
|
|
});
|