hyper/ava-e2e.config.js

10 lines
225 B
JavaScript
Raw Normal View History

2022-01-04 23:31:52 -09:00
module.exports = {
files: ['test/*'],
extensions: ['ts'],
require: ['ts-node/register/transpile-only'],
timeout: '2m',
2025-05-09 13:38:35 -08:00
verbose: true,
// Due to permissions issues, Windows needs cache turned off
cache: false
};