fix: ava config

This commit is contained in:
ThatGuySam 2025-02-10 20:16:48 -06:00
parent b769e33a88
commit 848770bc13

View file

@ -1,3 +1,6 @@
/**
* @type {import('ava').AVAConfig}
*/
export default () => { export default () => {
return { return {
require: [ require: [
@ -6,12 +9,14 @@ export default () => {
'tsconfig-paths/register' 'tsconfig-paths/register'
], ],
// https://github.com/avajs/ava/blob/main/docs/recipes/watch-mode.md // https://github.com/avajs/ava/blob/main/docs/recipes/watch-mode.md
ignoredByWatcher: [ watchMode: {
'!**/*.{js,vue}', ignoreChanges: [
'./build', '!**/*.{js,vue}',
'./dist', './build',
'./.output', './dist',
], './.output',
],
},
// tap: true, // tap: true,
// verbose: true, // verbose: true,
color: true color: true