-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(sbb-action-group): add visual tests (#2750)
- Loading branch information
1 parent
4305ca8
commit ab940c4
Showing
1 changed file
with
162 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
import { html, nothing } from 'lit'; | ||
|
||
import { | ||
describeEach, | ||
describeViewports, | ||
visualDiffDefault, | ||
visualRegressionFixture, | ||
} from '../core/testing/private.js'; | ||
|
||
import './action-group.js'; | ||
import '../button/button.js'; | ||
import '../button/secondary-button.js'; | ||
import '../link/block-link.js'; | ||
|
||
describe(`sbb-action-group`, () => { | ||
let root: HTMLElement; | ||
|
||
const horizontalCases = [ | ||
{ name: '300', elements: 3, alignGroup: 'start' }, | ||
{ name: '111', elements: 3, alignGroup: 'start', alignSecond: 'center' }, | ||
{ name: '201', elements: 3, alignGroup: 'start', alignThird: 'end' }, | ||
{ name: '102', elements: 3, alignGroup: 'end', alignFirst: 'start' }, | ||
{ name: '200', elements: 2, alignGroup: 'start' }, | ||
{ name: '101', elements: 2, alignGroup: 'start', alignSecond: 'end' }, | ||
]; | ||
|
||
const verticalCases = { | ||
elements: [3, 2], | ||
alignGroup: ['start', 'center', 'end'], | ||
}; | ||
|
||
describeViewports({ viewports: ['small', 'wide'] }, () => { | ||
describe('horizontal', () => { | ||
for (const state of horizontalCases) { | ||
it( | ||
`${state.name}`, | ||
visualDiffDefault.with((setup) => { | ||
setup.withFixture(html` | ||
<sbb-action-group orientation="horizontal" align-group="${state.alignGroup}"> | ||
<sbb-secondary-button align-self=${state.alignFirst || nothing} | ||
>Button 1</sbb-secondary-button | ||
> | ||
<sbb-button align-self=${state.alignSecond || nothing}>Button 2</sbb-button> | ||
${state.elements === 3 | ||
? html` <sbb-block-link | ||
align-self=${state.alignThird || nothing} | ||
icon-name="chevron-small-left-small" | ||
href="https://github.com/sbb-design-systems/lyne-components" | ||
> | ||
Link | ||
</sbb-block-link>` | ||
: nothing} | ||
</sbb-action-group> | ||
`); | ||
}), | ||
); | ||
} | ||
}); | ||
|
||
describeEach(verticalCases, ({ elements, alignGroup }) => { | ||
beforeEach(async function () { | ||
root = await visualRegressionFixture(html` | ||
<sbb-action-group | ||
orientation="vertical" | ||
horizontal-from="unset" | ||
align-group="${alignGroup}" | ||
> | ||
<sbb-secondary-button>Button 1</sbb-secondary-button> | ||
<sbb-button>Button 2</sbb-button> | ||
${elements === 3 | ||
? html` <sbb-block-link | ||
icon-name="chevron-small-left-small" | ||
href="https://github.com/sbb-design-systems/lyne-components" | ||
> | ||
Link | ||
</sbb-block-link>` | ||
: nothing} | ||
</sbb-action-group> | ||
`); | ||
}); | ||
|
||
it( | ||
`vertical ${visualDiffDefault.name}`, | ||
visualDiffDefault.with((setup) => { | ||
setup.withSnapshotElement(root); | ||
}), | ||
); | ||
}); | ||
|
||
describe('orientation=vertical-full-width', () => { | ||
for (const alignSelfThird of ['start', 'center', 'end']) { | ||
it( | ||
`align-third=${alignSelfThird}`, | ||
visualDiffDefault.with(async (setup) => { | ||
await setup.withFixture(html` | ||
<sbb-action-group | ||
orientation="vertical" | ||
horizontal-from="unset" | ||
align-group="stretch" | ||
> | ||
<sbb-secondary-button>Button 1</sbb-secondary-button> | ||
<sbb-button>Button 2</sbb-button> | ||
<sbb-block-link | ||
icon-name="chevron-small-left-small" | ||
href="https://github.com/sbb-design-systems/lyne-components" | ||
align-self=${alignSelfThird} | ||
> | ||
Link | ||
</sbb-block-link> | ||
</sbb-action-group> | ||
`); | ||
}), | ||
); | ||
} | ||
}); | ||
|
||
describe('size=s', () => { | ||
for (const orientation of ['horizontal', 'vertical']) { | ||
it( | ||
`orientation=${orientation}`, | ||
visualDiffDefault.with(async (setup) => { | ||
await setup.withFixture(html` | ||
<sbb-action-group | ||
orientation=${orientation} | ||
horizontal-from="unset" | ||
button-size="s" | ||
link-size="s" | ||
> | ||
<sbb-secondary-button>Button 1</sbb-secondary-button> | ||
<sbb-button>Button 2</sbb-button> | ||
<sbb-block-link | ||
icon-name="chevron-small-left-small" | ||
href="https://github.com/sbb-design-systems/lyne-components" | ||
> | ||
Link | ||
</sbb-block-link> | ||
</sbb-action-group> | ||
`); | ||
}), | ||
); | ||
} | ||
}); | ||
|
||
it( | ||
`orientation=vertical-horizontal-from=medium`, | ||
visualDiffDefault.with(async (setup) => { | ||
await setup.withFixture(html` | ||
<sbb-action-group orientation="vertical" horizontal-from="medium"> | ||
<sbb-secondary-button>Button 1</sbb-secondary-button> | ||
<sbb-button>Button 2</sbb-button> | ||
<sbb-block-link | ||
icon-name="chevron-small-left-small" | ||
href="https://github.com/sbb-design-systems/lyne-components" | ||
> | ||
Link | ||
</sbb-block-link> | ||
</sbb-action-group> | ||
`); | ||
}), | ||
); | ||
}); | ||
}); |