Browse Source

Missed an async.

Ian Rose 6 years ago
parent
commit
e7953f3166
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/test-console/src/panel.spec.ts

+ 1 - 1
tests/test-console/src/panel.spec.ts

@@ -87,7 +87,7 @@ describe('console/panel', () => {
     });
 
     describe('#onAfterAttach()', () => {
-      it('should start the session', () => {
+      it('should start the session', async () => {
         Widget.attach(panel, document.body);
         await dismissDialog();
         return panel.session.ready;