[ADF-1772] (#2588)

Fix spec declaration typo
fix it() declarations (used fit() instead of it())
This commit is contained in:
mihai sirghe
2017-11-01 18:21:00 +02:00
committed by Eugenio Romano
parent 21dd301841
commit 3c7122ddab

View File

@@ -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'