- You can activate distributed tasks executions and caching by - running: -
-nx connect- - What is Nx Cloud? - -
Here are some things you can do with Nx:
-# Generate UI lib -nx g @nx/angular:lib ui -# Add a component -nx g @nx/angular:component ui/src/lib/button-
nx show project portfolio --web-
nx graph-
# see what's been affected by changes -nx affected:graph -# run tests for current changes -nx affected:test -# run e2e tests for current changes -nx affected:e2e-
- Carefully crafted with - -
-about works!
diff --git a/libs/pages/about/src/lib/about.component.spec.ts b/libs/pages/about/src/lib/about.component.spec.ts new file mode 100644 index 00000000..79f40f9c --- /dev/null +++ b/libs/pages/about/src/lib/about.component.spec.ts @@ -0,0 +1,21 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; +import { AboutComponent } from './about.component'; + +describe('AboutComponent', () => { + let component: AboutComponent; + let fixture: ComponentFixture