chore(tests): attempt to clean up test flakiness (#3710)

This commit is contained in:
Gabe Kangas
2024-04-18 15:11:06 -07:00
committed by GitHub
parent fec0e9d11f
commit 9b569f3293
13 changed files with 11635 additions and 11607 deletions
+25 -21
View File
@@ -1,22 +1,26 @@
{
"name": "owncast-test-automation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"supertest": "^6.3.2",
"websocket": "^1.0.32",
"ajv": "^8.11.0",
"ajv-draft-04" : "^1.0.0",
"jsonfile": "^6.1.0",
"crypto-random": "^2.0.1"
},
"devDependencies": {
"jest": "^26.6.3"
}
}
"name": "owncast-test-automation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --runInBand *.test.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"supertest": "^6.3.2",
"websocket": "^1.0.32",
"ajv": "^8.11.0",
"ajv-draft-04": "^1.0.0",
"jsonfile": "^6.1.0",
"crypto-random": "^2.0.1"
},
"devDependencies": {
"jest": "^26.6.3"
},
"jest": {
"verbose": true,
"maxWorkers": 1
}
}