@ornikar/jest-config-react 18.0.0 → 18.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- /* eslint-env jest */
1
+ /* global jest */
2
2
 
3
3
  'use strict';
4
4
 
@@ -1,4 +1,4 @@
1
- /* eslint-env jest */
1
+ /* global jest, describe, it, test, expect, beforeEach, afterEach */
2
2
 
3
3
  'use strict';
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/jest-config-react",
3
- "version": "18.0.0",
3
+ "version": "18.0.1",
4
4
  "description": "✅⚛️ jest config for react",
5
5
  "repository": {
6
6
  "directory": "@ornikar/jest-config-react",
@@ -23,7 +23,7 @@
23
23
  "react-dom": "^19.0.0"
24
24
  },
25
25
  "dependencies": {
26
- "@ornikar/jest-config": "13.0.1",
26
+ "@ornikar/jest-config": "13.0.2",
27
27
  "identity-obj-proxy": "^3.0.0",
28
28
  "jest-fail-on-console": "3.3.1"
29
29
  },
@@ -1,5 +1,3 @@
1
- /* eslint-env jest */
2
-
3
1
  'use strict';
4
2
 
5
3
  const failOnConsole = require('jest-fail-on-console');
package/test-setup.js CHANGED
@@ -1,4 +1,4 @@
1
- /* eslint-env jest */
1
+ /* global jest */
2
2
 
3
3
  'use strict';
4
4
 
package/.eslintrc.json DELETED
@@ -1,8 +0,0 @@
1
- {
2
- "root": true,
3
- "extends": ["@ornikar/eslint-config/node"],
4
- "rules": {
5
- "security/detect-non-literal-fs-filename": "off",
6
- "security/detect-non-literal-require": "off"
7
- }
8
- }