Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescoBorzi committed Apr 8, 2020
1 parent f3f6711 commit d7623d4
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 25 deletions.
Expand Up @@ -12,7 +12,7 @@ import { QuestModule } from '../quest.module';

class CreatureQuestenderPage extends MultiRowEditorPageObject<CreatureQuestenderComponent> {}

fdescribe('CreatureQuestender integration tests', () => {
describe('CreatureQuestender integration tests', () => {
let component: CreatureQuestenderComponent;
let fixture: ComponentFixture<CreatureQuestenderComponent>;
let queryService: MysqlQueryService;
Expand Down Expand Up @@ -60,7 +60,7 @@ fdescribe('CreatureQuestender integration tests', () => {
fixture.detectChanges();
}

fdescribe('Creating new', () => {
describe('Creating new', () => {
beforeEach(() => setup(true));


Expand Down Expand Up @@ -130,7 +130,7 @@ fdescribe('CreatureQuestender integration tests', () => {
});
});

fdescribe('Editing existing', () => {
describe('Editing existing', () => {
beforeEach(() => setup(false));

it('should correctly initialise', () => {
Expand Down
Expand Up @@ -12,7 +12,7 @@ import { QuestModule } from '../quest.module';

class CreatureQueststarterPage extends MultiRowEditorPageObject<CreatureQueststarterComponent> {}

fdescribe('CreatureQueststarter integration tests', () => {
describe('CreatureQueststarter integration tests', () => {
let component: CreatureQueststarterComponent;
let fixture: ComponentFixture<CreatureQueststarterComponent>;
let queryService: MysqlQueryService;
Expand Down Expand Up @@ -60,7 +60,7 @@ fdescribe('CreatureQueststarter integration tests', () => {
fixture.detectChanges();
}

fdescribe('Creating new', () => {
describe('Creating new', () => {
beforeEach(() => setup(true));

it('should correctly initialise', () => {
Expand Down Expand Up @@ -129,7 +129,7 @@ fdescribe('CreatureQueststarter integration tests', () => {
});
});

fdescribe('Editing existing', () => {
describe('Editing existing', () => {
beforeEach(() => setup(false));

it('should correctly initialise', () => {
Expand Down
Expand Up @@ -12,7 +12,7 @@ import { QuestModule } from '../quest.module';

class GameobjectQuestenderPage extends MultiRowEditorPageObject<GameobjectQuestenderComponent> {}

fdescribe('GameobjectQuestender integration tests', () => {
describe('GameobjectQuestender integration tests', () => {
let component: GameobjectQuestenderComponent;
let fixture: ComponentFixture<GameobjectQuestenderComponent>;
let queryService: MysqlQueryService;
Expand Down Expand Up @@ -60,7 +60,7 @@ fdescribe('GameobjectQuestender integration tests', () => {
fixture.detectChanges();
}

fdescribe('Creating new', () => {
describe('Creating new', () => {
beforeEach(() => setup(true));


Expand Down Expand Up @@ -130,7 +130,7 @@ fdescribe('GameobjectQuestender integration tests', () => {
});
});

fdescribe('Editing existing', () => {
describe('Editing existing', () => {
beforeEach(() => setup(false));

it('should correctly initialise', () => {
Expand Down
Expand Up @@ -12,7 +12,7 @@ import { QuestModule } from '../quest.module';

class GameobjectQueststarterPage extends MultiRowEditorPageObject<GameobjectQueststarterComponent> {}

fdescribe('GameobjectQueststarter integration tests', () => {
describe('GameobjectQueststarter integration tests', () => {
let component: GameobjectQueststarterComponent;
let fixture: ComponentFixture<GameobjectQueststarterComponent>;
let queryService: MysqlQueryService;
Expand Down Expand Up @@ -60,7 +60,7 @@ fdescribe('GameobjectQueststarter integration tests', () => {
fixture.detectChanges();
}

fdescribe('Creating new', () => {
describe('Creating new', () => {
beforeEach(() => setup(true));


Expand Down Expand Up @@ -130,7 +130,7 @@ fdescribe('GameobjectQueststarter integration tests', () => {
});
});

fdescribe('Editing existing', () => {
describe('Editing existing', () => {
beforeEach(() => setup(false));

it('should correctly initialise', () => {
Expand Down
Expand Up @@ -12,7 +12,7 @@ import { QuestModule } from '../quest.module';

class QuestOfferRewardPage extends EditorPageObject<QuestOfferRewardComponent> {}

fdescribe('QuestOfferReward integration tests', () => {
describe('QuestOfferReward integration tests', () => {
let component: QuestOfferRewardComponent;
let fixture: ComponentFixture<QuestOfferRewardComponent>;
let queryService: MysqlQueryService;
Expand Down Expand Up @@ -67,7 +67,7 @@ fdescribe('QuestOfferReward integration tests', () => {
fixture.detectChanges();
}

fdescribe('Creating new', () => {
describe('Creating new', () => {
beforeEach(() => setup(true));

it('should correctly initialise', () => {
Expand Down Expand Up @@ -101,7 +101,7 @@ fdescribe('QuestOfferReward integration tests', () => {
});
});

fdescribe('Editing existing', () => {
describe('Editing existing', () => {
beforeEach(() => setup(false));

it('should correctly initialise', () => {
Expand Down
Expand Up @@ -12,7 +12,7 @@ import { QuestModule } from '../quest.module';

class QuestRequestItemsPage extends EditorPageObject<QuestRequestItemsComponent> {}

fdescribe('QuestRequestItems integration tests', () => {
describe('QuestRequestItems integration tests', () => {
let component: QuestRequestItemsComponent;
let fixture: ComponentFixture<QuestRequestItemsComponent>;
let queryService: MysqlQueryService;
Expand Down Expand Up @@ -61,7 +61,7 @@ fdescribe('QuestRequestItems integration tests', () => {
fixture.detectChanges();
}

fdescribe('Creating new', () => {
describe('Creating new', () => {
beforeEach(() => setup(true));

it('should correctly initialise', () => {
Expand Down Expand Up @@ -94,7 +94,7 @@ fdescribe('QuestRequestItems integration tests', () => {
});
});

fdescribe('Editing existing', () => {
describe('Editing existing', () => {
beforeEach(() => setup(false));

it('should correctly initialise', async () => {
Expand Down
Expand Up @@ -16,7 +16,7 @@ import { QuestModule } from '../quest.module';

class QuestTemplateAddonPage extends EditorPageObject<QuestTemplateAddonComponent> {}

fdescribe('QuestTemplateAddon integration tests', () => {
describe('QuestTemplateAddon integration tests', () => {
let component: QuestTemplateAddonComponent;
let fixture: ComponentFixture<QuestTemplateAddonComponent>;
let queryService: MysqlQueryService;
Expand Down Expand Up @@ -83,7 +83,7 @@ fdescribe('QuestTemplateAddon integration tests', () => {
fixture.detectChanges();
}

fdescribe('Creating new', () => {
describe('Creating new', () => {
beforeEach(() => setup(true));

it('should correctly initialise', () => {
Expand Down Expand Up @@ -119,7 +119,7 @@ fdescribe('QuestTemplateAddon integration tests', () => {
});
});

fdescribe('Editing existing', () => {
describe('Editing existing', () => {
beforeEach(() => setup(false));

it('should correctly initialise', () => {
Expand Down
Expand Up @@ -12,7 +12,7 @@ import { QuestModule } from '../quest.module';

class QuestTemplatePage extends EditorPageObject<QuestTemplateComponent> {}

fdescribe('QuestTemplate integration tests', () => {
describe('QuestTemplate integration tests', () => {
let component: QuestTemplateComponent;
let fixture: ComponentFixture<QuestTemplateComponent>;
let queryService: MysqlQueryService;
Expand Down Expand Up @@ -78,7 +78,7 @@ fdescribe('QuestTemplate integration tests', () => {
fixture.detectChanges();
}

fdescribe('Creating new', () => {
describe('Creating new', () => {
beforeEach(() => setup(true));

it('should correctly initialise', () => {
Expand Down Expand Up @@ -109,7 +109,7 @@ fdescribe('QuestTemplate integration tests', () => {
});
});

fdescribe('Editing existing', () => {
describe('Editing existing', () => {
beforeEach(() => setup(false));

it('should correctly initialise', () => {
Expand Down
2 changes: 2 additions & 0 deletions src/app/features/quest/quest.module.ts
Expand Up @@ -39,11 +39,13 @@ import { IconModule } from '@keira-shared/modules/icon/icon.module';
import { GameobjectQuestenderService } from './gameobject-questender/gameobject-questender.service';
import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar';
import { ItemSelectorModule } from '@keira-shared/modules/selectors/item-selector/item-selector.module';
import { GameobjectQuestenderComponent } from './gameobject-questender/gameobject-questender.component';

const components = [
CreatureQuestenderComponent,
CreatureQueststarterComponent,
GameobjectQueststarterComponent,
GameobjectQuestenderComponent,
QuestOfferRewardComponent,
QuestRequestItemsComponent,
QuestTemplateComponent,
Expand Down
Expand Up @@ -16,7 +16,7 @@ class SelectQuestComponentPage extends SelectPageObject<SelectQuestComponent> {
ID_FIELD = 'ID';
}

fdescribe('SelectQuest integration tests', () => {
describe('SelectQuest integration tests', () => {
let component: SelectQuestComponent;
let fixture: ComponentFixture<SelectQuestComponent>;
let selectService: SelectQuestService;
Expand Down

0 comments on commit d7623d4

Please sign in to comment.