chore(repo): remove flaky headless param from e2e test (#6244)

This commit is contained in:
Miroslav Jonaš 2021-07-05 15:11:58 +02:00 committed by GitHub
parent c17fb12ee6
commit a86efe0db0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,7 @@ describe('Nx Plugin', () => {
runCLI(`generate @nrwl/nx-plugin:plugin ${plugin} --linter=eslint`);
if (isNotWindows() && runCypressTests()) {
const e2eResults = runCLI(`e2e ${plugin}-e2e --headless --no-watch`);
const e2eResults = runCLI(`e2e ${plugin}-e2e --no-watch`);
expect(e2eResults).toContain('Running target "e2e" succeeded');
expect(await killPorts()).toBeTruthy();
}