d5-testing-library 1.8.0-alpha.2 → 1.8.0-alpha.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "d5-testing-library",
3
- "version": "1.8.0-alpha.2",
3
+ "version": "1.8.0-alpha.21",
4
4
  "description": "e2e testing D5 projects",
5
5
  "main": "dist/cjs/d5-testing-library.cjs",
6
6
  "module": "dist/d5-testing-library.legacy-esm.js",
@@ -20,6 +20,7 @@
20
20
  "scripts": {
21
21
  "clean": "rimraf dist",
22
22
  "build": "tsup",
23
+ "test": "jest",
23
24
  "changelog": "node ./scripts/releaseChangelog.mjs changelog -p v1.0.1",
24
25
  "prepublishOnly": "yarn clean",
25
26
  "prepack": "yarn build",
@@ -36,15 +37,26 @@
36
37
  "typescript": "5.3.3"
37
38
  },
38
39
  "devDependencies": {
39
- "@babel/core": "^7.23.9",
40
- "@types/node": "^20.11.16",
40
+ "@babel/core": "7.23.9",
41
+ "@types/node": "20.11.16",
42
+ "@types/jest": "29.5.14",
41
43
  "@types/selenium-webdriver": "4.1.26",
42
- "commander": "12.0.0",
43
- "esbuild-extra": "^0.3.1",
44
- "rimraf": "^5.0.5",
44
+ "commander": "12.1.0",
45
+ "esbuild-extra": "0.3.1",
46
+ "rimraf": "5.0.5",
47
+ "jest": "29.7.0",
48
+ "ts-jest": "29.2.5",
45
49
  "tsup": "7.0.0"
46
50
  },
47
51
  "peerDependencies": {
48
52
  "selenium-webdriver": "4.25.0"
53
+ },
54
+ "jest": {
55
+ "preset": "ts-jest",
56
+ "testEnvironment": "node",
57
+ "transformIgnorePatterns": [
58
+ "[/\\\\]node_modules[/\\\\].+[^esm]\\.(js|jsx|mjs|cjs|ts|tsx)$",
59
+ "^.+\\.module\\.(css|sass|scss)$"
60
+ ]
49
61
  }
50
62
  }
@@ -1,7 +0,0 @@
1
- import {
2
- FormEdit
3
- } from "./chunk-H3M6VBPP.mjs";
4
- import "./chunk-ZT3B7BQ2.mjs";
5
- export {
6
- FormEdit as default
7
- };
@@ -1,7 +0,0 @@
1
- import {
2
- ListForm
3
- } from "./chunk-LTHDA5XH.mjs";
4
- import "./chunk-ZT3B7BQ2.mjs";
5
- export {
6
- ListForm as default
7
- };
@@ -1,8 +0,0 @@
1
- import {
2
- TreeView
3
- } from "./chunk-4PUDCQM6.mjs";
4
- import "./chunk-LTHDA5XH.mjs";
5
- import "./chunk-ZT3B7BQ2.mjs";
6
- export {
7
- TreeView as default
8
- };
@@ -1,17 +0,0 @@
1
- import {
2
- ListForm
3
- } from "./chunk-LTHDA5XH.mjs";
4
-
5
- // src/pageObjects/elements/Forms/TreeView.ts
6
- var TREELIST_HEADER_CSS_SELECTOR = ".dx-treelist-headers .dx-treelist-content:not(.dx-datagrid-content-fixed)";
7
- var TreeView = class extends ListForm {
8
- constructor(driver) {
9
- super(driver);
10
- this.popupContainerCssSelector = `.popup .wrapper-tree-view-${this.formName}`;
11
- this.headerCssSelector = TREELIST_HEADER_CSS_SELECTOR;
12
- }
13
- };
14
-
15
- export {
16
- TreeView
17
- };