replace spectron with playwright for e2e testing

This commit is contained in:
Labhansh Agrawal 2021-09-09 13:18:45 +05:30
parent 910bff060e
commit 59c18a9eb1
6 changed files with 101 additions and 487 deletions

10
ava-e2e.config.js Normal file
View file

@ -0,0 +1,10 @@
export default {
files: ['test/*'],
babel: {
compileEnhancements: false,
compileAsTests: ['**/testUtils/**/*']
},
extensions: ['ts'],
require: ['ts-node/register/transpile-only'],
timeout: '30s'
};