@availity/mui-empty-state 2.0.2 → 3.0.0

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.
package/jest.config.js DELETED
@@ -1,22 +0,0 @@
1
- const global = require('../../jest.config.global');
2
-
3
- module.exports = {
4
- ...global,
5
- displayName: 'empty-state',
6
- coverageDirectory: '../../coverage/empty-state',
7
- moduleNameMapper: {
8
- ...global.moduleNameMapper,
9
- '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
10
- '<rootDir>/__mocks__/fileMock.js',
11
- },
12
- /* TODO: Update to latest Jest snapshotFormat
13
- * By default Nx has kept the older style of Jest Snapshot formats
14
- * to prevent breaking of any existing tests with snapshots.
15
- * It's recommend you update to the latest format.
16
- * You can do this by removing snapshotFormat property
17
- * and running tests with --update-snapshot flag.
18
- * Example: From within the project directory, run "nx test --update-snapshot"
19
- * More info: https://jestjs.io/docs/upgrading-to-jest29#snapshot-format
20
- */
21
- snapshotFormat: { escapeString: true, printBasicPrototype: true },
22
- };
@@ -1,10 +0,0 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../../dist/out-tsc",
5
- "module": "commonjs",
6
- "types": ["jest", "node", "@testing-library/jest-dom"],
7
- "allowJs": true
8
- },
9
- "include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
10
- }