plum-e2e 1.0.3 → 1.0.5

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.
@@ -11,9 +11,11 @@
11
11
  "license": "ISC",
12
12
  "devDependencies": {
13
13
  "@playwright/test": "^1.50.1",
14
- "@types/node": "^22.13.1",
14
+ "@types/node": "^22.17.0",
15
15
  "cross-env": "^7.0.3",
16
- "cucumber-html-reporter": "^7.2.0"
16
+ "cucumber-html-reporter": "^7.2.0",
17
+ "ts-node": "^10.9.2",
18
+ "typescript": "^5.9.2"
17
19
  },
18
20
  "dependencies": {
19
21
  "@cucumber/cucumber": "^11.2.0",
@@ -22,9 +22,9 @@ import { defineConfig, devices } from '@playwright/test';
22
22
  * Read environment variables from file.
23
23
  * https://github.com/motdotla/dotenv
24
24
  */
25
- // import dotenv from 'dotenv';
26
- // import path from 'path';
27
- // dotenv.config({ path: path.resolve(__dirname, '.env') });
25
+ import dotenv from 'dotenv';
26
+ import path from 'path';
27
+ dotenv.config({ path: path.resolve(__dirname, '.env') });
28
28
 
29
29
  /**
30
30
  * @see https://playwright.dev/docs/test-configuration
@@ -0,0 +1,13 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "module": "CommonJS",
5
+ "moduleResolution": "node",
6
+ "esModuleInterop": true,
7
+ "strict": true,
8
+ "skipLibCheck": true,
9
+ "types": ["node"],
10
+ "resolveJsonModule": true
11
+ },
12
+ "include": ["tests/**/*.ts", "config/**/*.ts", "services/**/*.ts", "tests/utils/*.ts"]
13
+ }