Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cdk-experimental/scrolling/tsconfig-build.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"strictMetadataEmit": false, // Workaround for Angular #22210
"strictMetadataEmit": true,
"flatModuleOutFile": "index.js",
"flatModuleId": "@angular/cdk-experimental/scrolling",
"skipTemplateCodegen": true,
Expand Down
1 change: 0 additions & 1 deletion src/cdk-experimental/scrolling/typings.d.ts

This file was deleted.

4 changes: 2 additions & 2 deletions src/lib/icon/icon.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,9 @@ describe('MatIcon', () => {
}));

it('should throw an error when using untrusted HTML', () => {
// Stub out console.error so we don't pollute our logs with Angular's warnings.
// Stub out console.warn so we don't pollute our logs with Angular's warnings.
// Jasmine will tear the spy down at the end of the test.
spyOn(console, 'error');
spyOn(console, 'warn');

expect(() => {
iconRegistry.addSvgIconLiteral('circle', '<svg><circle></svg>');
Expand Down