From 4439243f56ecf194add8fcf762bd005d998c3cd0 Mon Sep 17 00:00:00 2001 From: Filipp Riabchun Date: Sun, 24 Nov 2019 20:00:51 +0100 Subject: [PATCH] Fix some of the a11y violations --- .../storyshots-puppeteer/axe-tests.runner.js | 18 ++----- .../storyshots-puppeteer/getStorybookUrl.js | 18 +++++++ .../puppeteer-tests.runner.js | 18 ++----- .../storyshots-image.runner.js | 17 ++----- lib/components/src/Button/Button.stories.tsx | 4 +- lib/components/src/ScrollArea/ScrollArea.tsx | 6 +-- lib/components/src/form/form.stories.tsx | 50 +++++++++++-------- lib/components/src/tabs/tabs.stories.tsx | 4 +- lib/components/src/tabs/tabs.tsx | 2 +- .../src/typography/link/link.stories.tsx | 2 +- .../src/components/sidebar/SidebarHeading.tsx | 4 +- .../sidebar/SidebarSearch.stories.tsx | 2 +- lib/ui/src/settings/about.js | 1 + 13 files changed, 73 insertions(+), 73 deletions(-) create mode 100644 examples/official-storybook/storyshots-puppeteer/getStorybookUrl.js diff --git a/examples/official-storybook/storyshots-puppeteer/axe-tests.runner.js b/examples/official-storybook/storyshots-puppeteer/axe-tests.runner.js index 566e5916a27..05dde656719 100644 --- a/examples/official-storybook/storyshots-puppeteer/axe-tests.runner.js +++ b/examples/official-storybook/storyshots-puppeteer/axe-tests.runner.js @@ -3,27 +3,17 @@ * `yarn run storyshots-puppeteer` generates the static build & uses storyshots-puppeteer. * */ import path from 'path'; -import fs from 'fs'; import initStoryshots from '@storybook/addon-storyshots'; import { axeTest } from '@storybook/addon-storyshots-puppeteer'; -import { logger } from '@storybook/node-logger'; +import getStorybookUrl from './getStorybookUrl'; -// We run puppeteer tests on the static build of the storybook. -// For this test to be meaningful, you must build the static version of the storybook *before* running this test suite. -const pathToStorybookStatic = path.join(__dirname, '../', 'storybook-static'); - -if (!fs.existsSync(pathToStorybookStatic)) { - logger.error( - 'You are running puppeteer tests without having the static build of storybook. Please run "yarn run build-storybook" before running tests.' - ); -} else { +const storybookUrl = getStorybookUrl(); +if (storybookUrl != null) { initStoryshots({ suite: 'Puppeteer tests', storyKindRegex: /^Basics|UI/, framework: 'react', configPath: path.join(__dirname, '..'), - test: axeTest({ - storybookUrl: `file://${pathToStorybookStatic}`, - }), + test: axeTest({ storybookUrl }), }); } diff --git a/examples/official-storybook/storyshots-puppeteer/getStorybookUrl.js b/examples/official-storybook/storyshots-puppeteer/getStorybookUrl.js new file mode 100644 index 00000000000..913acc6c592 --- /dev/null +++ b/examples/official-storybook/storyshots-puppeteer/getStorybookUrl.js @@ -0,0 +1,18 @@ +import path from 'path'; +import fs from 'fs'; +import { logger } from '@storybook/node-logger'; + +export default function getStorybookUrl() { + if (process.env.USE_DEV_SERVER) { + return 'http://localhost:9011'; + } + + const pathToStorybookStatic = path.join(__dirname, '../', 'storybook-static'); + if (!fs.existsSync(pathToStorybookStatic)) { + logger.error( + 'You are running puppeteer tests without having the static build of storybook. Please run "yarn run build-storybook" before running tests.' + ); + return null; + } + return `file://${pathToStorybookStatic}`; +} diff --git a/examples/official-storybook/storyshots-puppeteer/puppeteer-tests.runner.js b/examples/official-storybook/storyshots-puppeteer/puppeteer-tests.runner.js index df15d10043e..df5db691816 100644 --- a/examples/official-storybook/storyshots-puppeteer/puppeteer-tests.runner.js +++ b/examples/official-storybook/storyshots-puppeteer/puppeteer-tests.runner.js @@ -3,27 +3,17 @@ * `yarn run storyshots-puppeteer` generates the static build & uses storyshots-puppeteer. * */ import path from 'path'; -import fs from 'fs'; import initStoryshots from '@storybook/addon-storyshots'; import { puppeteerTest } from '@storybook/addon-storyshots-puppeteer'; -import { logger } from '@storybook/node-logger'; +import getStorybookUrl from './getStorybookUrl'; -// We run puppeteer tests on the static build of the storybook. -// For this test to be meaningful, you must build the static version of the storybook *before* running this test suite. -const pathToStorybookStatic = path.join(__dirname, '../', 'storybook-static'); - -if (!fs.existsSync(pathToStorybookStatic)) { - logger.error( - 'You are running puppeteer tests without having the static build of storybook. Please run "yarn run build-storybook" before running tests.' - ); -} else { +const storybookUrl = getStorybookUrl(); +if (storybookUrl != null) { initStoryshots({ suite: 'Puppeteer tests', storyKindRegex: /^Addons\/Storyshots/, framework: 'react', configPath: path.join(__dirname, '..'), - test: puppeteerTest({ - storybookUrl: `file://${pathToStorybookStatic}`, - }), + test: puppeteerTest({ storybookUrl }), }); } diff --git a/examples/official-storybook/storyshots-puppeteer/storyshots-image.runner.js b/examples/official-storybook/storyshots-puppeteer/storyshots-image.runner.js index 636408bc00d..8f69249353d 100644 --- a/examples/official-storybook/storyshots-puppeteer/storyshots-image.runner.js +++ b/examples/official-storybook/storyshots-puppeteer/storyshots-image.runner.js @@ -3,28 +3,19 @@ * `yarn run storyshots-puppeteer` generates the static build & uses storyshots-puppeteer. * */ import path from 'path'; -import fs from 'fs'; import initStoryshots from '@storybook/addon-storyshots'; import { imageSnapshot } from '@storybook/addon-storyshots-puppeteer'; -import { logger } from '@storybook/node-logger'; +import getStorybookUrl from './getStorybookUrl'; -// Image snapshots -// We do screenshots against the static build of the storybook. -// For this test to be meaningful, you must build the static version of the storybook *before* running this test suite. -const pathToStorybookStatic = path.join(__dirname, '../', 'storybook-static'); - -if (!fs.existsSync(pathToStorybookStatic)) { - logger.error( - 'You are running image snapshots without having the static build of storybook. Please run "yarn run build-storybook" before running tests.' - ); -} else { +const storybookUrl = getStorybookUrl(); +if (storybookUrl != null) { initStoryshots({ suite: 'Image snapshots', storyKindRegex: /^Addons\/Storyshots/, framework: 'react', configPath: path.join(__dirname, '..'), test: imageSnapshot({ - storybookUrl: `file://${pathToStorybookStatic}`, + storybookUrl, getMatchOptions: () => ({ failureThreshold: 0.02, // 2% threshold, failureThresholdType: 'percent', diff --git a/lib/components/src/Button/Button.stories.tsx b/lib/components/src/Button/Button.stories.tsx index 2d6f048a3fb..9eb18d88882 100644 --- a/lib/components/src/Button/Button.stories.tsx +++ b/lib/components/src/Button/Button.stories.tsx @@ -15,7 +15,7 @@ storiesOf('Basics/Button', module).add('all buttons', () => (

Buttons that are used for everything else

-
@@ -42,7 +42,7 @@ storiesOf('Basics/Button', module).add('all buttons', () => ( - ))} @@ -65,7 +75,7 @@ storiesOf('Basics/Form/Button', module) .add('validations', () => ( {['error', 'warn', 'valid', null].map(valid => ( - + @@ -78,7 +88,7 @@ storiesOf('Basics/Form/Textarea', module) .add('sizes', () => ( {['auto', 'flex', '100%'].map(size => ( - +