Skip to content

Commit

Permalink
Use alias for import in setup generator tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalgrimaud committed Jun 19, 2022
1 parent e7d8b90 commit 0261ee3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { shallowMount, VueWrapper } from '@vue/test-utils';
import { AlertBus } from '../../../../../../../main/webapp/app/common/domain/alert/AlertBus';
import { ProjectToUpdate } from '../../../../../../../main/webapp/app/springboot/primary/ProjectToUpdate';
import { AlertBus } from '@/common/domain/alert/AlertBus';
import { ProjectToUpdate } from '@/springboot/primary/ProjectToUpdate';
import { stubAlertBus } from '../../../../common/domain/AlertBus.fixture';
import { createProjectToUpdate } from '../../ProjectToUpdate.fixture';
import { stubSetupService } from '../../../domain/SetupService.fixture';
import { SetupService } from '../../../../../../../main/webapp/app/springboot/domain/SetupService';
import { SetupGeneratorVue } from '../../../../../../../main/webapp/app/springboot/primary/generator/setup-generator';
import { SetupService } from '@/springboot/domain/SetupService';
import { SetupGeneratorVue } from '@/springboot/primary/generator/setup-generator';

let wrapper: VueWrapper;
let component: any;
Expand Down

0 comments on commit 0261ee3

Please sign in to comment.