Skip to content

Commit 78fd19c

Browse files
authored
Merge pull request #17 from code-dot-org/stephen/eyes-branch5
notify
2 parents a1286a9 + 6efc72b commit 78fd19c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

frontend/apps/design-system-storybook/applitools.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ module.exports = {
1212
appName: 'Component Library',
1313
batchName: 'Frontend Eyes Tests',
1414
dontCloseBatches: true,
15+
parentBranchName: 'staging',
1516
browser: [
1617
{width: 1200, height: 800, name: 'chrome'},
1718
{width: 1200, height: 800, name: 'firefox'},

frontend/apps/marketing/playwright.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export default defineConfig<EyesFixture>({
2929
matchLevel: 'Strict',
3030
// Runner type: 'ufg' for Ultrafast Grid, 'classic' for Classic runner
3131
type: 'classic',
32+
parentBranchName: 'staging',
3233
batch: {
3334
name: 'Frontend Eyes Tests',
3435
id: process.env.APPLITOOLS_BATCH_ID,

frontend/packages/component-library/src/cms/section/stories/Section.story.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,15 @@ export const SectionWithBackgroundColorT: Story = {
7474
padding: 'l',
7575
children: (
7676
<>
77-
<Heading2>This is a section with a background color@</Heading2>
77+
<Heading2>This is a section with a background color#</Heading2>
7878
<BodyOneText>I'm just a sentence.</BodyOneText>
7979
</>
8080
),
8181
},
8282
play: async ({canvasElement}: {canvasElement: HTMLElement}) => {
8383
const canvas = within(canvasElement);
8484
const heading = canvas.getByText(
85-
'This is a section with a background color@',
85+
'This is a section with a background color#',
8686
);
8787

8888
// check if children content is in the section

0 commit comments

Comments
 (0)