From 3c7122ddabe33febd030a87bf98cf78172830319 Mon Sep 17 00:00:00 2001 From: mihai sirghe <32762007+smihai78@users.noreply.github.com> Date: Wed, 1 Nov 2017 18:21:00 +0200 Subject: [PATCH] [ADF-1772] (#2588) Fix spec declaration typo fix it() declarations (used fit() instead of it()) --- .../src/components/apps-list.component.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ng2-components/ng2-activiti-tasklist/src/components/apps-list.component.spec.ts b/ng2-components/ng2-activiti-tasklist/src/components/apps-list.component.spec.ts index 5f821e9409..cb5af27c50 100644 --- a/ng2-components/ng2-activiti-tasklist/src/components/apps-list.component.spec.ts +++ b/ng2-components/ng2-activiti-tasklist/src/components/apps-list.component.spec.ts @@ -129,9 +129,9 @@ describe('AppsListComponent', () => { expect(emitSpy).toHaveBeenCalled(); }); - describe('intenationalization', () => { + describe('internationalization', () => { - fit('should provide a translation for the default application name, when app name is not provided', () => { + it('should provide a translation for the default application name, when app name is not provided', () => { const appDataMock = { defaultAppId: 'tasks', name: null @@ -141,7 +141,7 @@ describe('AppsListComponent', () => { }); }); - fit('should provide the application name, when it exists', () => { + it('should provide the application name, when it exists', () => { const appDataMock = { defaultAppId: 'uiu', name: 'the-name'