Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add e2e test for jest #396

Merged
merged 4 commits into from
Aug 26, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/e2e-jest-workflow.yml
@@ -0,0 +1,46 @@
on:
schedule:
- cron: '0 */4 * * *'
push:
branches:
- master
pull_request:
paths:
- .github/workflows/e2e-jest-workflow.yml
- scripts/e2e-setup-ci.sh

name: 'E2E Jest'
jobs:
chore:
name: 'Validating Jest'
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master

- name: 'Use Node.js 10.x'
uses: actions/setup-node@master
with:
version: 10.x

- name: 'Build the standard bundle'
run: |
node ./scripts/run-yarn.js build:cli

- name: 'Running the integration test'
run: |
source scripts/e2e-setup-ci.sh

yarn init -p
yarn add jest

echo "it('should pass', () => { expect(true).toBeTruthy(); });" > pass.test.js
yarn jest pass.test.js

echo "it('should fail', () => { expect(false).toBeTruthy(); });" > fail.test.js
! yarn jest fail.test.js

yarn add left-pad

echo "const leftPad = require('left-pad'); it('should resolve a module', () => { expect(typeof leftPad).toBe('function');});" > module.test.js
yarn jest module.test.js