mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-13 06:13:03 -05:00
feat(challengestandalone): challenge standalone
This commit is contained in:
1
libs/module-to-standalone/forbidden/src/index.ts
Normal file
1
libs/module-to-standalone/forbidden/src/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from './lib/forbidden.module';
|
||||
@@ -0,0 +1,7 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'lib-home',
|
||||
template: `Forbidden component`,
|
||||
})
|
||||
export class ForbiddenComponent {}
|
||||
@@ -0,0 +1,13 @@
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule } from '@angular/router';
|
||||
import { ForbiddenComponent } from './forbidden.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [ForbiddenComponent],
|
||||
imports: [
|
||||
CommonModule,
|
||||
RouterModule.forChild([{ path: '', component: ForbiddenComponent }]),
|
||||
],
|
||||
})
|
||||
export class ForbiddenModule {}
|
||||
8
libs/module-to-standalone/forbidden/src/test-setup.ts
Normal file
8
libs/module-to-standalone/forbidden/src/test-setup.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
// @ts-expect-error https://thymikee.github.io/jest-preset-angular/docs/getting-started/test-environment
|
||||
globalThis.ngJest = {
|
||||
testEnvironmentOptions: {
|
||||
errorOnUnknownElements: true,
|
||||
errorOnUnknownProperties: true,
|
||||
},
|
||||
};
|
||||
import 'jest-preset-angular/setup-jest';
|
||||
Reference in New Issue
Block a user