Skip to content

Commit

Permalink
feat(react): remove babelJest option test
Browse files Browse the repository at this point in the history
  • Loading branch information
BigAB committed Jun 11, 2020
1 parent 8d53da1 commit 3b4055e
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions e2e/react/src/react.test.ts
Expand Up @@ -199,25 +199,6 @@ forEachCli((currentCLIName) => {
);
}, 120000);

it('should be able to use babel-jest', async () => {
ensureProject();
const appName = uniq('app');
const libName = uniq('lib');

runCLI(
`generate @nrwl/react:app ${appName} --no-interactive --babelJest`
);
runCLI(
`generate @nrwl/react:lib ${libName} --no-interactive --babelJest`
);

const appTestResults = await runCLIAsync(`test ${appName}`);
expect(appTestResults.stderr).toContain('Test Suites: 1 passed, 1 total');

const libTestResults = await runCLIAsync(`test ${libName}`);
expect(libTestResults.stderr).toContain('Test Suites: 1 passed, 1 total');
}, 120000);

it('should be able to add a redux slice', async () => {
ensureProject();
const appName = uniq('app');
Expand Down

0 comments on commit 3b4055e

Please sign in to comment.