Skip to content

Commit d61bcc0

Browse files
authored
Merge branch '2.x' into backport/backport-3922-to-2.x
2 parents 2aee6c2 + c8d4bb8 commit d61bcc0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

packages/opensearch-eslint-config-opensearch-dashboards/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The eslint config used by the opensearch dashboards team
44

55
## Usage
66

7-
To use this eslint config, just install the peer dependencies and reference it
7+
To use this eslint config, just install the peer dependencies and reference it
88
in your `.eslintrc`:
99

1010
```javascript
@@ -17,8 +17,8 @@ in your `.eslintrc`:
1717

1818
## Optional jest config
1919

20-
If the project uses the [jest test runner](https://facebook.github.io/jest/),
21-
the `@elastic/eslint-config-kibana/jest` config can be extended as well to use
20+
If the project uses the [jest test runner](https://jestjs.io),
21+
the `@elastic/eslint-config-kibana/jest` config can be extended as well to use
2222
`eslint-plugin-jest` and add settings specific to it:
2323

2424
```javascript

scripts/jest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
//
3939
// node scripts/jest --coverage
4040
//
41-
// See all cli options in https://facebook.github.io/jest/docs/cli.html
41+
// See all cli options in https://jestjs.io/docs/cli
4242

4343
var resolve = require('path').resolve;
4444
process.argv.push('--config', resolve(__dirname, '../src/dev/jest/config.js'));

scripts/jest_integration.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
//
3939
// node scripts/jest_integration --coverage
4040
//
41-
// See all cli options in https://facebook.github.io/jest/docs/cli.html
41+
// See all cli options in https://jestjs.io/docs/cli
4242

4343
var resolve = require('path').resolve;
4444
process.argv.push('--config', resolve(__dirname, '../src/dev/jest/config.integration.js'));

src/dev/jest/junit_reporter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default class JestJUnitReporter {
5353
/**
5454
* Called by jest when all tests complete
5555
* @param {Object} contexts
56-
* @param {JestResults} results see https://facebook.github.io/jest/docs/en/configuration.html#testresultsprocessor-string
56+
* @param {JestResults} results see https://jestjs.io/docs/configuration/#testresultsprocessor-string
5757
* @return {undefined}
5858
*/
5959
onRunComplete(contexts, results) {

0 commit comments

Comments
 (0)