Skip to content

Commit

Permalink
temporarily run only one functional test
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarea committed Oct 19, 2023
1 parent cb92198 commit 59bfafd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"test": "jest --coverage --detectOpenHandles",
"test:functional": "jest --config src/functionalTests/jest.config.js --runInBand --detectOpenHandles",
"test:functional": "jest --config src/functionalTests/jest.config.js --runInBand --detectOpenHandles cogrpc.test.ts",
"static-checks": "run-p static-checks:*",
"static-checks:lint": "tslint --project .",
"static-checks:prettier": "prettier \"src/**/*.ts\" --list-different",
Expand Down
2 changes: 1 addition & 1 deletion src/functionalTests/cogrpc.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ describe('Cargo collection', () => {
});
});

test('Sending pings and receiving pongs', async () => {
test.only('Sending pings and receiving pongs', async () => {
const { pdaChain, internetGatewaySessionKey } = await createAndRegisterPrivateGateway();

const pingId = uuid();
Expand Down

0 comments on commit 59bfafd

Please sign in to comment.