@taiga-ui/testing 3.59.0 → 3.60.0-canary.799e7d6
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/bundles/taiga-ui-testing-core.umd.js +78 -78
- package/bundles/taiga-ui-testing-core.umd.js.map +1 -1
- package/bundles/taiga-ui-testing-cypress.umd.js +19 -19
- package/bundles/taiga-ui-testing-cypress.umd.js.map +1 -1
- package/bundles/taiga-ui-testing-setup-jest.umd.js +19 -19
- package/bundles/taiga-ui-testing-setup-jest.umd.js.map +1 -1
- package/bundles/taiga-ui-testing-utils.umd.js +67 -67
- package/bundles/taiga-ui-testing-utils.umd.js.map +1 -1
- package/esm2015/core/accordion-item.harness.js +8 -8
- package/esm2015/core/accordion.harness.js +3 -3
- package/esm2015/core/action.harness.js +2 -2
- package/esm2015/core/avatar.harness.js +2 -2
- package/esm2015/core/badge.harness.js +3 -3
- package/esm2015/core/button.harness.js +2 -2
- package/esm2015/core/calendar.harness.js +3 -3
- package/esm2015/core/card.harness.js +5 -5
- package/esm2015/core/dialog.harness.js +3 -3
- package/esm2015/core/hosted-dropdown.harness.js +3 -3
- package/esm2015/core/island.harness.js +13 -13
- package/esm2015/core/loader.harness.js +4 -4
- package/esm2015/core/marker-icon.harness.js +2 -2
- package/esm2015/core/primitive-calender.harness.js +7 -7
- package/esm2015/core/primitive-spin-button.harness.js +4 -4
- package/esm2015/core/primitive-textfield.harness.js +4 -4
- package/esm2015/core/primitive-year-month-pagination.harness.js +7 -7
- package/esm2015/core/primitive-year-picker.harness.js +5 -5
- package/esm2015/core/select.harness.js +2 -2
- package/esm2015/core/svg.harness.js +4 -4
- package/esm2015/core/tag.harness.js +6 -6
- package/esm2015/core/textfield.harness.js +3 -3
- package/esm2015/core/toggle.harness.js +3 -3
- package/esm2015/cypress/assertions/be-in-viewport.js +4 -4
- package/esm2015/cypress/commands/wait-all-img-inside.command.js +9 -9
- package/esm2015/cypress/snapshot/command.js +5 -5
- package/esm2015/cypress/snapshot/plugin.js +6 -6
- package/esm2015/setup-jest/index.js +20 -20
- package/esm2015/utils/active-element.js +3 -3
- package/esm2015/utils/helpers.js +2 -2
- package/esm2015/utils/input/cleaner.unit-common.js +12 -12
- package/esm2015/utils/input/filler.unit-common.js +9 -9
- package/esm2015/utils/input/form-control-state.unit-common.js +9 -9
- package/esm2015/utils/input/placeholder.unit-common.js +17 -17
- package/esm2015/utils/input/tooltip.unit-common.js +8 -8
- package/esm2015/utils/keyboard-event.js +4 -4
- package/esm2015/utils/native-input.page-object.js +4 -4
- package/esm2015/utils/page-object.js +3 -3
- package/esm2015/utils/replace-nbsp.js +2 -2
- package/esm2015/utils/viewport.js +5 -5
- package/fesm2015/taiga-ui-testing-core.js +75 -75
- package/fesm2015/taiga-ui-testing-core.js.map +1 -1
- package/fesm2015/taiga-ui-testing-cypress.js +19 -19
- package/fesm2015/taiga-ui-testing-cypress.js.map +1 -1
- package/fesm2015/taiga-ui-testing-setup-jest.js +19 -19
- package/fesm2015/taiga-ui-testing-setup-jest.js.map +1 -1
- package/fesm2015/taiga-ui-testing-utils.js +66 -66
- package/fesm2015/taiga-ui-testing-utils.js.map +1 -1
- package/package.json +17 -17
package/package.json
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
2
|
+
"name": "@taiga-ui/testing",
|
3
|
+
"version": "3.60.0-canary.799e7d6",
|
4
|
+
"description": "Utils functions for testing Taiga UI packages",
|
5
|
+
"dependencies": {
|
6
|
+
"cypress-image-snapshot": "4.0.1",
|
7
|
+
"tslib": "2.6.2"
|
8
|
+
},
|
9
|
+
"peerDependencies": {
|
10
|
+
"@taiga-ui/cdk": ">=3.60.0-canary.799e7d6"
|
11
|
+
},
|
12
|
+
"main": "bundles/taiga-ui-testing.umd.js",
|
13
|
+
"module": "fesm2015/taiga-ui-testing.js",
|
14
|
+
"es2015": "fesm2015/taiga-ui-testing.js",
|
15
|
+
"esm2015": "esm2015/taiga-ui-testing.js",
|
16
|
+
"fesm2015": "fesm2015/taiga-ui-testing.js",
|
17
|
+
"typings": "taiga-ui-testing.d.ts",
|
18
|
+
"sideEffects": false
|
19
19
|
}
|