@bigbinary/neetoui 3.2.74 → 3.2.77
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/.circleci/config.yml +8 -2
- package/formik.js +1 -1
- package/index.js +1 -1
- package/layouts.js +1 -1
- package/package.json +1 -1
- package/tests/Dropdown.test.js +1 -1
- package/tests/EmailInput.test.js +166 -0
- package/tests/Pagination.test.js +125 -0
- package/tests/Switch.test.js +61 -0
- package/tests/Tab.test.js +60 -0
- package/tests/TimePicker.test.js +92 -0
- package/tests/Tooltip.test.js +44 -0
package/.circleci/config.yml
CHANGED
|
@@ -3,7 +3,7 @@ aliases:
|
|
|
3
3
|
- &test_environment
|
|
4
4
|
docker:
|
|
5
5
|
# replace with your preferred image
|
|
6
|
-
- image:
|
|
6
|
+
- image: cimg/node:16.13.2
|
|
7
7
|
jobs:
|
|
8
8
|
"Snapshot Test":
|
|
9
9
|
<<: *test_environment
|
|
@@ -17,10 +17,16 @@ jobs:
|
|
|
17
17
|
<<: *test_environment
|
|
18
18
|
steps:
|
|
19
19
|
- checkout
|
|
20
|
+
- restore_cache:
|
|
21
|
+
key: dependency-cache-{{ checksum "yarn.lock" }}
|
|
20
22
|
- run: yarn install
|
|
23
|
+
- save_cache:
|
|
24
|
+
key: dependency-cache-{{ checksum "yarn.lock" }}
|
|
25
|
+
paths:
|
|
26
|
+
- ./node_modules
|
|
21
27
|
- run:
|
|
22
28
|
name: Run Unit Tests
|
|
23
|
-
command: yarn test
|
|
29
|
+
command: yarn test --runInBand
|
|
24
30
|
|
|
25
31
|
workflows:
|
|
26
32
|
neetoui-tests:
|