Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jestjs/jest
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 14b0c2c1d6f81b64adf8b827649ece80a4448cfc
Choose a base ref
...
head repository: jestjs/jest
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 75006e46c76f6fda14bbc0548f86edb2ba087cd2
Choose a head ref

Commits on Oct 17, 2021

  1. Copy the full SHA
    8c00cc1 View commit details

Commits on Oct 18, 2021

  1. Copy the full SHA
    9d737d7 View commit details
  2. Copy the full SHA
    e7edb75 View commit details
  3. Copy the full SHA
    a1829e9 View commit details

Commits on Oct 19, 2021

  1. Copy the full SHA
    2e2b17a View commit details
  2. Copy the full SHA
    7092dfb View commit details
  3. Copy the full SHA
    9d286a6 View commit details
  4. Copy the full SHA
    75f5179 View commit details
  5. v27.3.1

    SimenB committed Oct 19, 2021
    Copy the full SHA
    4f3328f View commit details
  6. Copy the full SHA
    3f54dd0 View commit details

Commits on Oct 21, 2021

  1. Copy the full SHA
    f41e128 View commit details

Commits on Oct 23, 2021

  1. docs/getting-started: Fix link to ParcelJS docs (#11988)

    Alexander Kilyushin authored Oct 23, 2021
    Copy the full SHA
    87a25b0 View commit details

Commits on Oct 24, 2021

  1. Copy the full SHA
    7b857d5 View commit details

Commits on Oct 26, 2021

  1. Copy the full SHA
    01c2780 View commit details

Commits on Oct 27, 2021

  1. Copy the full SHA
    3d04f33 View commit details

Commits on Oct 28, 2021

  1. Copy the full SHA
    fe5e91c View commit details
  2. Copy the full SHA
    27b89ec View commit details

Commits on Oct 29, 2021

  1. Copy the full SHA
    97e1eac View commit details

Commits on Nov 1, 2021

  1. Copy the full SHA
    26de3ef View commit details
  2. Copy the full SHA
    619f843 View commit details
  3. Copy the full SHA
    10d9580 View commit details

Commits on Nov 2, 2021

  1. Copy the full SHA
    6114232 View commit details
  2. Copy the full SHA
    d594f71 View commit details
  3. Copy the full SHA
    9301c73 View commit details

Commits on Nov 3, 2021

  1. Copy the full SHA
    95f4969 View commit details

Commits on Nov 5, 2021

  1. Copy the full SHA
    8f2cdad View commit details

Commits on Nov 8, 2021

  1. Do not reset global.document before CustomElement:disconnectedCallbac… (

    #11871)
    
    * Do not reset global.document before CustomElement:disconnectedCallback has finished running, document should be accessible in this callback function
    
    * Update CHANGELOG.md
    
    Co-authored-by: dalvarezmartinez1 <example@example.com>
    Co-authored-by: Simen Bekkhus <sbekkhus91@gmail.com>
    3 people authored Nov 8, 2021
    Copy the full SHA
    7a34a69 View commit details

Commits on Nov 11, 2021

  1. Copy the full SHA
    42b020f View commit details

Commits on Nov 18, 2021

  1. Copy the full SHA
    0486a3c View commit details
  2. Copy the full SHA
    7bb400c View commit details

Commits on Nov 24, 2021

  1. Copy the full SHA
    9947a2a View commit details

Commits on Nov 25, 2021

  1. Copy the full SHA
    1f813fa View commit details

Commits on Nov 26, 2021

  1. Copy the full SHA
    7bc4a10 View commit details
  2. Copy the full SHA
    a9a7c33 View commit details
  3. Copy the full SHA
    2a5e515 View commit details

Commits on Nov 29, 2021

  1. Copy the full SHA
    7039cb1 View commit details
  2. Copy the full SHA
    ef25c46 View commit details
  3. Copy the full SHA
    f8c6e75 View commit details
  4. Copy the full SHA
    5cd75f4 View commit details
  5. Copy the full SHA
    9d14c5d View commit details
  6. Copy the full SHA
    c739748 View commit details
  7. Copy the full SHA
    ee24dfc View commit details
  8. fix(cli, config, docs): improve mock related cli messages, config t…

    …emplate entries and documentation (#12047)
    mrazauskas authored Nov 29, 2021
    Copy the full SHA
    2e6c217 View commit details
  9. Copy the full SHA
    9e2c7b1 View commit details
  10. Copy the full SHA
    a3bc271 View commit details
  11. Copy the full SHA
    585beb6 View commit details
  12. Copy the full SHA
    c6b1ed8 View commit details
  13. v27.4.0

    SimenB committed Nov 29, 2021
    Copy the full SHA
    0dc6dde View commit details
  14. Copy the full SHA
    eb5b7d3 View commit details
  15. Copy the full SHA
    40a9027 View commit details
Showing 1,504 changed files with 57,918 additions and 40,344 deletions.
46 changes: 0 additions & 46 deletions .azure-pipelines-steps.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .azure-pipelines.yml

This file was deleted.

36 changes: 12 additions & 24 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -12,63 +12,51 @@ aliases:
app-dir: ~/jest

orbs:
node: circleci/node@4.7.0
node: circleci/node@5.0.0

jobs:
test-node:
parameters:
node-version:
type: string
partial:
type: boolean
default: false
working_directory: ~/jest
executor: node/default
parallelism: 4
steps:
- checkout
- node/install:
node-version: << parameters.node-version >>
install-npm: false
- node/install-packages: *install
- when:
condition: << parameters.partial >>
steps:
- run:
command: yarn test-ci-partial
- unless:
condition: << parameters.partial >>
steps:
- run:
command: yarn test-ci
- run:
command: yarn test-ci-partial --shard=$(expr $CIRCLE_NODE_INDEX + 1)/$CIRCLE_NODE_TOTAL
- store_test_results:
path: reports/junit

test-jest-jasmine:
working_directory: ~/jest
executor: node/default
parallelism: 4
steps:
- checkout
- node/install:
lts: true
install-npm: false
node-version: lts/*
- node/install-packages: *install
- run:
command: JEST_JASMINE=1 yarn test-ci-partial && JEST_JASMINE=1 yarn test-leak
name: Test
command: JEST_JASMINE=1 yarn test-ci-partial --shard=$(expr $CIRCLE_NODE_INDEX + 1)/$CIRCLE_NODE_TOTAL
- run:
name: Leak test
command: JEST_JASMINE=1 yarn test-leak
- store_test_results:
path: reports/junit

# Workflows enables us to run multiple jobs in parallel
workflows:
build-and-deploy:
jobs:
- test-node:
matrix:
parameters:
node-version: ['14']
- test-node:
name: test-node-partial-<< matrix.node-version >>
partial: true
matrix:
parameters:
node-version: ['10', '12', '15', '16']
node-version: ['14', '16', '18']
- test-jest-jasmine
13 changes: 13 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
codecov:
require_ci_to_pass: false

comment: false

coverage:
status:
patch:
default:
target: auto
project:
default:
target: auto
12 changes: 9 additions & 3 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
!.*
**/coverage/**
**/node_modules/**
bin/
flow-typed/**
packages/*/build/**
packages/jest-diff/src/cleanupSemantic.ts
packages/*/dist/**
website/.docusaurus
website/blog
website/build
website/node_modules
website/i18n/*.js
website/static
!.eslintrc.js

# Third-party script
packages/jest-diff/src/cleanupSemantic.ts

**/.yarn
**/.pnp.*

8 changes: 6 additions & 2 deletions .eslintplugin/index.js
Original file line number Diff line number Diff line change
@@ -9,6 +9,10 @@ exports.rules = {
'ban-types-eventually': require('@typescript-eslint/eslint-plugin').rules[
'ban-types'
],
'prefer-rest-params-eventually': require('eslint/lib/rules/prefer-rest-params'),
'prefer-spread-eventually': require('eslint/lib/rules/prefer-spread'),
'prefer-rest-params-eventually':
require('eslint/use-at-your-own-risk').builtinRules.get(
'prefer-rest-params',
),
'prefer-spread-eventually':
require('eslint/use-at-your-own-risk').builtinRules.get('prefer-spread'),
};
Loading