@bigbinary/neetoui 3.2.60 → 3.2.63
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 +17 -0
- package/formik.js +1 -1
- package/index.js +1 -1
- package/jest-setup.js +1 -0
- package/layouts.js +1 -1
- package/package.json +6 -4
- package/tests/Button.test.js +72 -0
- package/36bdad5d6f5ec143521a5bed31c71282.png +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml'
|
|
2
|
+
version: 2.1
|
|
3
|
+
|
|
4
|
+
jobs:
|
|
5
|
+
Snapshot-test:
|
|
6
|
+
docker:
|
|
7
|
+
# replace with your preferred image
|
|
8
|
+
- image: circleci/node:12
|
|
9
|
+
steps:
|
|
10
|
+
- checkout
|
|
11
|
+
- run: yarn install
|
|
12
|
+
- run: yarn chromatic test --exit-zero-on-changes --project-token $CHROMATIC_PROJECT_TOKEN
|
|
13
|
+
|
|
14
|
+
workflows:
|
|
15
|
+
chromatic-snapshot-test:
|
|
16
|
+
jobs:
|
|
17
|
+
- Snapshot-test
|