mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-29 23:10:07 +00:00
* test: add gateway integration test
* test(gateway): fix connection test
* test(gateway): add heartbeat test
* ci: add integration test
* fix: add uWebSockets.js
* ci: add timeout
* test(utils): remove old test
* Revert "test(utils): remove old test"
This reverts commit 04fb6dd4b5.
* test(gateway): fix uws server
* test(gateway): fix type
* chore: update codecov flag
* test(gateway): remove dev code
---------
Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
90 lines
1.4 KiB
JSON
90 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"outputs": [
|
|
"dist/**/*.js"
|
|
],
|
|
"inputs": [
|
|
"src/**/*.ts"
|
|
]
|
|
},
|
|
"build:type": {
|
|
"dependsOn": [
|
|
"^build:type"
|
|
],
|
|
"outputs": [
|
|
"dist/**/*.d.ts",
|
|
"dist/**/*.d.ts.map",
|
|
"dist/tsconfig.tsbuildinfo"
|
|
]
|
|
},
|
|
"release-build": {
|
|
"dependsOn": [
|
|
"^release-build"
|
|
],
|
|
"outputs": [
|
|
"dist/**"
|
|
]
|
|
},
|
|
"test:unit-coverage": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"coverage/**"
|
|
]
|
|
},
|
|
"test:unit": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"coverage/**"
|
|
]
|
|
},
|
|
"test:integration": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"coverage/**"
|
|
]
|
|
},
|
|
"test:test-type": {
|
|
"dependsOn": [
|
|
"^build:type"
|
|
]
|
|
},
|
|
"test:deno-unit": {
|
|
"dependsOn": [
|
|
"build",
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"denoTestsDist/**"
|
|
]
|
|
},
|
|
"test:e2e": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"coverage/**"
|
|
]
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"^build:type"
|
|
]
|
|
},
|
|
"fmt": {
|
|
"dependsOn": [
|
|
"^build:type"
|
|
]
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
}
|
|
}
|
|
} |