mirror of
https://github.com/tenrok/axios.git
synced 2026-06-17 19:21:29 +03:00
76794ac27a
* chore: add additional testing to esm and cjs smoke * test: updated test suite to include module tests * fix: esm test smoke import * fix: cubic feedback * fix: failing cjs * fix: cjs timeout
18 lines
320 B
JavaScript
18 lines
320 B
JavaScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
testTimeout: 60000,
|
|
projects: [
|
|
{
|
|
test: {
|
|
name: 'module',
|
|
environment: 'node',
|
|
include: ['tests/**/*.module.test.js'],
|
|
setupFiles: [],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
});
|