@open-xchange/appsuite-codeceptjs 0.6.1 → 0.6.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/container/Dockerfile +1 -1
- package/global.d.ts +5 -4
- package/package.json +15 -15
- package/steps.d.ts +6 -6
package/container/Dockerfile
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
FROM registry.gitlab.open-xchange.com/appsuite/web-foundation/base-images/playwright:v1.
|
|
1
|
+
FROM registry.gitlab.open-xchange.com/appsuite/web-foundation/base-images/playwright:v1.49.1-jammy
|
package/global.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
/* eslint-disable no-var, camelcase, @typescript-eslint/no-unused-vars */
|
|
1
2
|
// IMPORTANT: This solution only works by declaring variables with var (do not use let or const)
|
|
2
|
-
var expect: Chai.ExpectStatic
|
|
3
|
-
var assert: Chai.AssertStatic
|
|
4
|
-
const codecept_dir: string
|
|
5
|
-
const output_dir: string
|
|
3
|
+
var expect: Chai.ExpectStatic
|
|
4
|
+
var assert: Chai.AssertStatic
|
|
5
|
+
const codecept_dir: string
|
|
6
|
+
const output_dir: string
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-xchange/appsuite-codeceptjs",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "OX App Suite CodeceptJS Configuration and Helpers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -10,35 +10,35 @@
|
|
|
10
10
|
"license": "AGPL-3.0-or-later",
|
|
11
11
|
"private": false,
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@axe-core/playwright": "^4.10.
|
|
13
|
+
"@axe-core/playwright": "^4.10.1",
|
|
14
14
|
"@codeceptjs/helper": "^2.0.4",
|
|
15
15
|
"@influxdata/influxdb-client": "^1.35.0",
|
|
16
16
|
"@open-xchange/codecept-horizontal-scaler": "^0.1.11",
|
|
17
|
-
"@playwright/test": "1.
|
|
17
|
+
"@playwright/test": "1.49.1",
|
|
18
18
|
"allure-codeceptjs": "2.15.1",
|
|
19
|
-
"chai": "^5.1.
|
|
19
|
+
"chai": "^5.1.2",
|
|
20
20
|
"chai-subset": "^1.6.0",
|
|
21
21
|
"chalk": "^4.1.2",
|
|
22
22
|
"chalk-table": "^1.0.2",
|
|
23
|
-
"codeceptjs": "3.6.
|
|
24
|
-
"dotenv": "^16.4.
|
|
25
|
-
"mocha": "^
|
|
23
|
+
"codeceptjs": "3.6.10",
|
|
24
|
+
"dotenv": "^16.4.7",
|
|
25
|
+
"mocha": "^11.0.1",
|
|
26
26
|
"mocha-junit-reporter": "^2.2.1",
|
|
27
27
|
"mocha-multi": "^1.1.7",
|
|
28
28
|
"moment": "^2.30.1",
|
|
29
|
-
"moment-timezone": "^0.5.
|
|
30
|
-
"p-retry": "^6.2.
|
|
31
|
-
"playwright-core": "1.
|
|
29
|
+
"moment-timezone": "^0.5.46",
|
|
30
|
+
"p-retry": "^6.2.1",
|
|
31
|
+
"playwright-core": "1.49.1",
|
|
32
32
|
"short-uuid": "^5.2.0",
|
|
33
|
-
"soap": "^1.1.
|
|
33
|
+
"soap": "^1.1.7"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@
|
|
37
|
-
"@types/node": "^22.7.4",
|
|
36
|
+
"@types/node": "^22.10.2",
|
|
38
37
|
"ts-node": "^10.9.2",
|
|
39
|
-
"typescript": "^5.
|
|
38
|
+
"typescript": "^5.7.2",
|
|
39
|
+
"@open-xchange/lint": "0.2.0"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"lint": "eslint ."
|
|
43
43
|
}
|
|
44
|
-
}
|
|
44
|
+
}
|
package/steps.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/// <reference types='codeceptjs' />
|
|
2
|
-
type steps_file = typeof import('@codeceptjs/configure/test/integration/steps_file.js')
|
|
3
|
-
type users = typeof import('./src/users.js')
|
|
4
|
-
type contexts = typeof import('./src/contexts.js')
|
|
5
|
-
type ResellerContext = typeof import('./src/reseller/context.js')
|
|
6
|
-
type ResellerUser = typeof import('./src/reseller/user.js')
|
|
7
|
-
type AppSuite = import('./src/helper.js')
|
|
2
|
+
type steps_file = typeof import('@codeceptjs/configure/test/integration/steps_file.js')
|
|
3
|
+
type users = typeof import('./src/users.js')
|
|
4
|
+
type contexts = typeof import('./src/contexts.js')
|
|
5
|
+
type ResellerContext = typeof import('./src/reseller/context.js')
|
|
6
|
+
type ResellerUser = typeof import('./src/reseller/user.js')
|
|
7
|
+
type AppSuite = import('./src/helper.js')
|
|
8
8
|
|
|
9
9
|
declare namespace CodeceptJS {
|
|
10
10
|
interface SupportObject { I: I, current: any, users: users, contexts: contexts, ResellerContext: ResellerContext, ResellerUser: ResellerUser }
|