12 lines
420 B
TypeScript
12 lines
420 B
TypeScript
import {addNgRx, checkFilesExists, cleanup, newApp, readFile, runCLI, runCommand, runSchematic, updateFile} from '../utils';
|
|
|
|
describe('workspace', () => {
|
|
beforeEach(cleanup);
|
|
|
|
it('creates a new workspace for developing angular applications', () => {
|
|
runSchematic('@nrwl/bazel:application --name=proj --version=0.1');
|
|
|
|
checkFilesExists(`proj/tsconfig.json`, `proj/WORKSPACE`, `proj/BUILD.bazel`);
|
|
});
|
|
});
|