Skip to content

Commit

Permalink
Disabled prettier test fixing proposition
Browse files Browse the repository at this point in the history
  • Loading branch information
hdurix authored and wmarques committed Sep 15, 2022
1 parent 45bf337 commit c13f2a4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/javascript/spec/module/domain/Modules.fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const defaultProjectHistory = (): ProjectHistory => ({
});

export const projectHistoryWithInit = (): ProjectHistory => ({
modules: [moduleSlug('init')],
modules: [moduleSlug('init'), moduleSlug('prettier')],
properties: appliedModuleProperties(),
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const defaultLandscape = (): Landscape =>
elements: [
initialModule('infinitest', 'Add infinitest filters', [applicationBaseNamePropertyDefinition()], []),
initialModule('init', 'Add some initial tools', [applicationBaseNamePropertyDefinition()], []),
initialModule('prettier', 'Add prettier', [applicationBaseNamePropertyDefinition()], []),
],
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ describe('Landscape', () => {

assertSelectedConnectorsCount(wrapper, 1);
expect(wrapper.find(wrappedElement('modules-apply-new-button')).text()).toContain('(1)');
expect(wrapper.find(wrappedElement('modules-apply-all-button')).text()).toContain('(2)');
expect(wrapper.find(wrappedElement('modules-apply-all-button')).text()).toContain('(3)');
});

it('Should not select not selectable module', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ const restLandscape = (): RestLandscape => ({
elements: [
landscapeModule('infinitest', 'Add infinitest filters', applicationBaseNameProperties()),
landscapeModule('init', 'Add some initial tools', applicationBaseNameProperties()),
landscapeModule('prettier', 'Add prettier', applicationBaseNameProperties()),
],
},
{
Expand Down

0 comments on commit c13f2a4

Please sign in to comment.