mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-1772] (#2588)
Fix spec declaration typo fix it() declarations (used fit() instead of it())
This commit is contained in:
committed by
Eugenio Romano
parent
21dd301841
commit
3c7122ddab
@@ -129,9 +129,9 @@ describe('AppsListComponent', () => {
|
|||||||
expect(emitSpy).toHaveBeenCalled();
|
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 = {
|
const appDataMock = {
|
||||||
defaultAppId: 'tasks',
|
defaultAppId: 'tasks',
|
||||||
name: null
|
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 = {
|
const appDataMock = {
|
||||||
defaultAppId: 'uiu',
|
defaultAppId: 'uiu',
|
||||||
name: 'the-name'
|
name: 'the-name'
|
||||||
|
Reference in New Issue
Block a user