mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +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();
|
||||
});
|
||||
|
||||
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'
|
||||
|
Reference in New Issue
Block a user