feat(test): Added stress testing to CI

This commit is contained in:
Muhammed Mustafa
2022-11-28 18:43:45 +05:30
parent b3b5e5bd0d
commit 7331a5df38
2 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ const exec = util.promisify(require('child_process').exec);
// Get items from `git diff develop'
void (async () => {
const { stdout } = await exec(`git diff develop -- *.spec.ts **/*.spec.ts | grep test\\(`);
const { stdout } = await exec(`git diff origin/develop -- *.spec.ts **/*.spec.ts | grep test\\(`);
// eslint-disable-next-line no-undef
const dbType = process.env.E2E_DB_TYPE;