Skip to content

Commit

Permalink
Clean up sdk/package.json by deleting old test labels (#447)
Browse files Browse the repository at this point in the history
Also delete old skipped test
  • Loading branch information
sergekh2 authored Jul 23, 2024
1 parent 4bd2847 commit 61779a8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 220 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,20 +284,16 @@ jobs:
echo "SSL_CERT_DIR=$SSL_CERT_DIR"
- name: Run node (without entitlements)
run: ./core/node/run_single.sh --de &
run: |
./core/node/run_single.sh --de -c
./core/node/run_single.sh --de -r &
- name: Wait for (without entitlements) node to be up
run: yarn csb:wait:no-entitlements

- name: Run SDK Tests (without entitlements)
run: yarn run turbo run build test:ci --filter=@river-build/sdk

- name: Run Node Restart Tests (without entitlements)
run: yarn workspace @river-build/sdk run test:restart

- name: Run Node Flush Tests (without entitlements)
run: yarn workspace @river-build/sdk run test:node-minipool-flush

- name: Archive River Node Logs and Settings
if: always()
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -550,7 +546,9 @@ jobs:
working-directory: core

- name: Start node with entitlements
run: ./core/node/run_single.sh &
run: |
./core/node/run_single.sh -c
./core/node/run_single.sh -r &
- name: Wait for (with entitlements) node to be up
run: yarn csb:wait:entitlements
Expand Down
4 changes: 0 additions & 4 deletions core/node/start.sh

This file was deleted.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"csb:list:include": "yarn csb:list | xargs -I arg echo -n \"--include arg \"",
"csb:multi": "./core/scripts/launch_multi.sh",
"csb:multi:no-entitlements": "./core/scripts/launch_multi.sh --disable_entitlements",
"csb:node": "./core/scripts/start_node.sh",
"csb:prettier:check": "prettier --check ./packages",
"csb:prettier:fix": "prettier --write ./packages",
"csb:start": "yarn csb:start:entitlements",
Expand Down
10 changes: 0 additions & 10 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,9 @@
"my-node": "yarn node -r ../../scripts/node-no-warn.js --loader ts-node/esm --experimental-specifier-resolution=node --experimental-vm-modules",
"test": "yarn test:ci",
"test:ci": "RIVER_ENV=local_single_ne yarn my-jest --group=main",
"test:ci:load-tests-s2": "RIVER_ENV=local_single_ne yarn my-jest --group=load-tests-s2",
"test:ci:load-tests-s3": "RIVER_ENV=local_single_ne yarn my-jest --group=load-tests-s3 --testTimeout=1180000",
"test:ci:load-tests-s3.1": "RIVER_ENV=local_single_ne yarn my-jest --group=load-tests-3.1 --testTimeout=1180000",
"test:ci:load-tests-s4.1": "RIVER_ENV=local_single_ne yarn my-jest --group=load-tests-s4.1 --testTimeout=1180000",
"test:ci:multi:ent": "RIVER_ENV=local_multi yarn my-jest --group=with-entitilements",
"test:ci:multi:ne": "RIVER_ENV=local_multi_ne yarn my-jest --group=main",
"test:ci:stress-test-follower": "RIVER_ENV=local_single_ne yarn my-jest --group=stress-test-follower --testTimeout=180000000 --detectOpenHandles --runInBand",
"test:ci:stress-test-leader": "RIVER_ENV=local_single_ne yarn my-jest --group=stress-test-leader --testTimeout=180000000 --detectOpenHandles --runInBand",
"test:ci:synthetic:all": "RIVER_ENV=local_single_ne yarn my-jest --group=synthetic",
"test:ci:wallet-management-tests": "RIVER_ENV=local_single_ne yarn my-jest --group=wallet-management-tests",
"test:ci:with-entitlements": "RIVER_ENV=local_single yarn my-jest --group=with-entitilements",
"test:node-minipool-flush": "RIVER_ENV=local_single_ne yarn my-jest --group=node-minipool-flush --numWorkers=1",
"test:restart": "RIVER_ENV=local_single_ne yarn my-jest --group=restart --numWorkers=1",
"watch": "tsc --watch"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/src/bobFlushes.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @group node-minipool-flush
* @group main
*/

import { bobTalksToHimself } from './bob.test_util'
Expand Down
196 changes: 0 additions & 196 deletions packages/sdk/src/clientFlushes.test.ts

This file was deleted.

0 comments on commit 61779a8

Please sign in to comment.