nx/e2e/bazel/workspace.test.ts
2017-10-07 12:09:45 -04:00

22 lines
435 B
TypeScript

import {
checkFilesExist,
cleanup,
copyMissingPackages,
ngNew,
ngNewBazel,
readFile,
runCLI,
runCommand,
runSchematic,
updateFile
} from '../utils';
describe('workspace', () => {
beforeEach(cleanup);
it('creates a new workspace for developing angular applications', () => {
ngNewBazel('--collection=@nrwl/bazel --skip-install');
checkFilesExist(`tsconfig.json`, `WORKSPACE`, `BUILD.bazel`);
});
});