Increase timeout for ava

This commit is contained in:
Cornelius Roemer 2024-08-24 23:04:36 +02:00
parent 5483adc8e7
commit b06ee6ed27
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ jobs:
dist/*.exe
- name: Run E2E Tests
if: runner.os != 'Linux'
run: yarn run test:e2e
run: yarn run test:e2e --verbose
- name: Run E2E Tests on Linux
if: runner.os == 'Linux'
uses: GabrielBB/xvfb-action@v1.6

View file

@ -2,5 +2,5 @@ module.exports = {
files: ['test/*'],
extensions: ['ts'],
require: ['ts-node/register/transpile-only'],
timeout: '30s'
timeout: '2m'
};