Skip to content
This repository was archived by the owner on Jun 16, 2024. It is now read-only.

Commit 5072737

Browse files
committed
test: remove useless var
1 parent 4332dfd commit 5072737

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

test/e2e/cypress.spec.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,13 @@ import snapshot from 'snap-shot-it'
33

44
describe('cypress - e2e', async () => {
55
it(`test: cypress integration`, async () => {
6-
const keepSameOutputForCiEnvVars = {
7-
NO_COLOR: '1',
8-
CYPRESS_INTERNAL_E2E_TESTS: '1',
9-
}
10-
116
spawnSync('npx', ['cypress', 'verify'])
127

138
const result = spawnSync('npx', ['cypress', 'run'], {
149
encoding: 'utf8',
1510
env: {
1611
...process.env,
17-
...keepSameOutputForCiEnvVars,
12+
NO_COLOR: '1',
1813
},
1914
})
2015
const output = sanitizeOutput(result.stdout.toString())

0 commit comments

Comments
 (0)