Skip to content

Commit

Permalink
Fix still more stuffs
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickcr committed Jul 31, 2019
1 parent 43d077a commit 9f1b116
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 21 deletions.
21 changes: 4 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,6 @@ jobs:
name: Unit tests
command: yarn run test --maxWorkers=4

test_build_examples:
<<: *defaults
steps:
- checkout
- run: *install_yarn_version
- restore_cache: *restore_yarn_cache
- run: *run_yarn_install
- save_cache: *save_yarn_cache
- run:
name: Build storybook and examples
command: yarn run website:build

test_e2e:
<<: *defaults
steps:
Expand All @@ -90,7 +78,9 @@ jobs:
- save_cache: *save_yarn_cache
- run:
name: End-2-End tests
command: yarn run test:e2e:saucelabs
command: |
yarn run website:build
yarn run test:e2e:saucelabs
workflows:
version: 2
Expand All @@ -99,7 +89,4 @@ workflows:
- test_build
- test_unit
- test_lint
- test_build_examples
- test_e2e:
requires:
- test_build_examples
- test_e2e
7 changes: 3 additions & 4 deletions wdio.saucelabs.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,16 @@ const config = {

// Capabilities Generator
// https://wiki.saucelabs.com/display/DOCS/Platform+Configurator#/
commonCapabilities: {
extendedDebugging: true,
capturePerformance: true,
},
commonCapabilities: {},

capabilities: [
{
browserName: 'chrome',
platform: 'Windows 10',
version: '75.0',
screenResolution: '1680x1050',
extendedDebugging: true,
capturePerformance: true,
},
{
browserName: 'firefox',
Expand Down

0 comments on commit 9f1b116

Please sign in to comment.