cypress-ag-grid 2.0.1 → 2.0.2
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 +13 -13
- package/README.md +378 -376
- package/app/grid-basic.js +70 -70
- package/app/grid-grouped.js +71 -71
- package/app/index.html +14 -14
- package/cypress/e2e/ag-grid-data.cy.js +506 -506
- package/cypress/e2e/ag-grid-elements.cy.js +59 -59
- package/cypress/fixtures/cardata.json +21 -21
- package/cypress/plugins/index.js +22 -22
- package/cypress/support/commands.js +25 -25
- package/cypress/support/e2e.js +21 -21
- package/package.json +29 -29
- package/src/agGrid/agGridInteractions.js +538 -537
- package/src/agGrid/agGridValidations.js +38 -37
- package/src/agGrid/filterOperator.enum.js +13 -13
- package/src/agGrid/menuTab.enum.js +6 -6
- package/src/agGrid/sort.enum.js +5 -5
- package/src/index.js +18 -18
package/.circleci/config.yml
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
# Use the latest 2.1 version of CircleCI pipeline process engine.
|
|
2
|
-
# See: https://circleci.com/docs/2.0/configuration-reference
|
|
3
|
-
version: 2.1
|
|
4
|
-
|
|
5
|
-
orbs:
|
|
6
|
-
# "cypress-io/cypress@1" installs the latest published
|
|
7
|
-
# version "1.x.y" of the orb. We recommend you then use
|
|
8
|
-
# the strict explicit version "cypress-io/cypress@1.x.y"
|
|
9
|
-
# to lock the version and prevent unexpected CI changes
|
|
10
|
-
cypress: cypress-io/cypress@2.0.0
|
|
11
|
-
workflows:
|
|
12
|
-
run_cypress_tests:
|
|
13
|
-
jobs:
|
|
1
|
+
# Use the latest 2.1 version of CircleCI pipeline process engine.
|
|
2
|
+
# See: https://circleci.com/docs/2.0/configuration-reference
|
|
3
|
+
version: 2.1
|
|
4
|
+
|
|
5
|
+
orbs:
|
|
6
|
+
# "cypress-io/cypress@1" installs the latest published
|
|
7
|
+
# version "1.x.y" of the orb. We recommend you then use
|
|
8
|
+
# the strict explicit version "cypress-io/cypress@1.x.y"
|
|
9
|
+
# to lock the version and prevent unexpected CI changes
|
|
10
|
+
cypress: cypress-io/cypress@2.0.0
|
|
11
|
+
workflows:
|
|
12
|
+
run_cypress_tests:
|
|
13
|
+
jobs:
|
|
14
14
|
- cypress/run # "run" job comes from "cypress" orb
|