We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd4fccc commit 2b2347dCopy full SHA for 2b2347d
tests/app/tests/snippets.ts
@@ -38,10 +38,12 @@ describe('Snippets', () => {
38
});
39
40
// TODO: Skip list-view test until karma test launcher double navigate bug is fixed
41
- (IS_IOS ? it.skip : it)("Icon-font snippets can be loaded", () => {
42
- return testApp.loadComponent(IconFontComponent).then((componentRef) => {
+ (IS_IOS ? it.skip : it)("Icon-font snippets can be loaded", (done) => {
+ testApp.loadComponent(IconFontComponent).then((componentRef) => {
43
const componentInstance = componentRef.instance;
44
assert.instanceOf(componentInstance, IconFontComponent);
45
+ //Works around a "dehydrated change detector" exception.
46
+ setTimeout(done, 10);
47
48
-})
49
+})
0 commit comments