1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

Update test commands to ignore cloud specific tests in CI

This commit is contained in:
Rory Powell 2023-07-20 09:21:38 +01:00
parent f9b54d6de4
commit 8f2d8a7b64
3 changed files with 3 additions and 3 deletions

View file

@ -15,10 +15,10 @@
"test:watch": "yarn run test --watch",
"test:debug": "DEBUG=1 yarn run test",
"test:notify": "node scripts/testResultsWebhook",
"test:cloud:prod": "yarn run test --testPathIgnorePatterns=/.+\\.integration\\.spec\\.ts",
"test:cloud:prod": "yarn run test --testPathIgnorePatterns=\\.integration\\.",
"test:cloud:qa": "yarn run test",
"test:ci": "yarn run test --testPathIgnorePatterns=/.+\\.integration\\.spec\\.ts /account-api/",
"serve:test:ci": "start-server-and-test dev:built http://localhost:4001/health test:smoke",
"test:self:ci": "yarn run test --testPathIgnorePatterns=\\.integration\\. \\.cloud\\.",
"serve:test:self:ci": "start-server-and-test dev:built http://localhost:4001/health test:self:ci",
"serve": "start-server-and-test dev:built http://localhost:4001/health",
"dev:built": "cd ../ && yarn dev:built"
},