diff --git a/projects/example-app/src/app/auth/containers/__snapshots__/login-page.component.spec.ts.snap b/projects/example-app/src/app/auth/containers/__snapshots__/login-page.component.spec.ts.snap index dcd2e3a2c2..d7f3ece81b 100644 --- a/projects/example-app/src/app/auth/containers/__snapshots__/login-page.component.spec.ts.snap +++ b/projects/example-app/src/app/auth/containers/__snapshots__/login-page.component.spec.ts.snap @@ -71,6 +71,7 @@ exports[`Login Page should compile 1`] = ` class="mat-form-field-label ng-tns-c2-0 mat-empty mat-form-field-empty ng-star-inserted" for="mat-input-0" id="mat-form-field-label-1" + ng-reflect-disabled="true" ng-reflect-ng-switch="false" > @@ -151,6 +152,7 @@ exports[`Login Page should compile 1`] = ` class="mat-form-field-label ng-tns-c2-1 mat-empty mat-form-field-empty ng-star-inserted" for="mat-input-1" id="mat-form-field-label-3" + ng-reflect-disabled="true" ng-reflect-ng-switch="false" > diff --git a/projects/example-app/src/app/books/containers/__snapshots__/find-book-page.component.spec.ts.snap b/projects/example-app/src/app/books/containers/__snapshots__/find-book-page.component.spec.ts.snap index b08e560b08..d93f232683 100644 --- a/projects/example-app/src/app/books/containers/__snapshots__/find-book-page.component.spec.ts.snap +++ b/projects/example-app/src/app/books/containers/__snapshots__/find-book-page.component.spec.ts.snap @@ -63,6 +63,7 @@ exports[`Find Book Page should compile 1`] = ` class="mat-form-field-label ng-tns-c3-0 mat-empty mat-form-field-empty ng-star-inserted" for="mat-input-0" id="mat-form-field-label-1" + ng-reflect-disabled="true" ng-reflect-ng-switch="false" > diff --git a/projects/example-app/src/test.ts b/projects/example-app/src/test.ts index 87fd46437b..1fb8aea7de 100644 --- a/projects/example-app/src/test.ts +++ b/projects/example-app/src/test.ts @@ -13,7 +13,7 @@ import { } from '@angular/platform-browser-dynamic/testing'; // fixes typing errors in Atom editor -import {} from 'jasmine'; +import 'jasmine'; // Unfortunately there's no typing for the `__karma__` variable. Just declare it as any. declare var __karma__: any; diff --git a/projects/example-app/tsconfig.app.json b/projects/example-app/tsconfig.app.json index dad2761ed5..2d6c3455d9 100644 --- a/projects/example-app/tsconfig.app.json +++ b/projects/example-app/tsconfig.app.json @@ -23,7 +23,7 @@ }, "exclude": [ "../../node_modules", - "test.ts", + "**/test.ts", "**/*.spec.ts", "**/setup-jest.ts" ]