cypress-ag-grid 2.0.2 → 2.0.4
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 +1 -1
- package/README.md +2 -2
- package/app/ag-grid.css +6682 -0
- package/app/ag-theme-alpine.css +338 -0
- package/app/data.json +22 -0
- package/app/grid-basic.js +14 -6
- package/app/grid-grouped.js +2 -2
- package/app/index.html +2 -2
- package/cypress/e2e/ag-grid-data.cy.js +117 -44
- package/cypress/fixtures/cardata.json +20 -20
- package/package.json +2 -2
- package/src/agGrid/agGridInteractions.js +24 -23
- package/src/agGrid/filterOperator.enum.js +3 -1
- package/src/agGrid/sort.enum.js +2 -2
package/.circleci/config.yml
CHANGED
|
@@ -7,7 +7,7 @@ orbs:
|
|
|
7
7
|
# version "1.x.y" of the orb. We recommend you then use
|
|
8
8
|
# the strict explicit version "cypress-io/cypress@1.x.y"
|
|
9
9
|
# to lock the version and prevent unexpected CI changes
|
|
10
|
-
cypress: cypress-io/cypress@
|
|
10
|
+
cypress: cypress-io/cypress@3
|
|
11
11
|
workflows:
|
|
12
12
|
run_cypress_tests:
|
|
13
13
|
jobs:
|
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ Cypress plugin for interacting with and validating against ag grid.
|
|
|
31
31
|
```bash
|
|
32
32
|
npm install cypress-ag-grid --save-dev
|
|
33
33
|
```
|
|
34
|
-
Then include the following in your support/index.js file:
|
|
34
|
+
Then include the following in your `support/index.js` file (Cypress v9 and below) or `support/e2e.(js|ts)` file (Cypress 10 and above):
|
|
35
35
|
|
|
36
36
|
```javascript
|
|
37
37
|
import "cypress-ag-grid";
|
|
@@ -136,7 +136,7 @@ options: {
|
|
|
136
136
|
isMultiFilter?: boolean;
|
|
137
137
|
}];
|
|
138
138
|
hasApplyButton?: boolean;
|
|
139
|
-
|
|
139
|
+
noMenuTabs?: boolean;
|
|
140
140
|
selectAllLocaleText: string;
|
|
141
141
|
}
|
|
142
142
|
|