mirror of
https://github.com/owncast/owncast.git
synced 2024-12-23 17:50:38 +03:00
7b867af8c8
* Bump braces and jest in /test/automated/api Bumps [braces](https://github.com/micromatch/braces) to 3.0.3 and updates ancestor dependency [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest). These dependencies need to be updated together. Updates `braces` from 3.0.2 to 3.0.3 - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md) - [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3) Updates `jest` from 26.6.3 to 29.7.0 - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v29.7.0/packages/jest) --- updated-dependencies: - dependency-name: braces dependency-type: indirect - dependency-name: jest dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> * Add previous testRunner jasmine2, add ws dependency explicitly (#3784) --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mahmed2000 <mahmad2000@protonmail.com>
29 lines
545 B
JSON
29 lines
545 B
JSON
{
|
|
"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": "^29.7.0",
|
|
"jest-jasmine2": "^29.7.0",
|
|
"ws": "^7.5.9"
|
|
},
|
|
"jest": {
|
|
"verbose": true,
|
|
"maxWorkers": 1,
|
|
"testRunner": "jest-jasmine2"
|
|
}
|
|
}
|