Skip to content

Commit 467f6f8

Browse files
Merge pull request #45 from gemini-testing/TESTPLANE-736.testing_library
feat: connect @testplane/testing-library @KuznetsovRoman
2 parents 911d218 + 27d37d7 commit 467f6f8

24 files changed

+1292
-941
lines changed

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ concurrency:
1212

1313
jobs:
1414
build:
15-
runs-on: self-hosted-arc
15+
runs-on: ubuntu-latest
1616

1717
strategy:
1818
matrix:
19-
node-version: [16.x, 18.x, 20.x]
19+
node-version: [18.x, 20.x, 22.x]
2020

2121
steps:
2222
- uses: actions/checkout@v4

__fixtures/config/jsConfig.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
12
module.exports = {
23
gridUrl: 'local',
34
baseUrl: 'http://localhost',

__fixtures/config/withComments.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
12
module.exports = {
23
// some comment
34
// other comment

__fixtures/config/withEverything.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import path from "path";
33

44
const isCi = Boolean(process.env.CI);
55

6+
// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
67
export default {
78
gridUrl: "local",
89
baseUrl: "http://localhost",
@@ -42,4 +43,4 @@ export default {
4243
token: path.join(os.homedir(), ".config", "tokens", "token")
4344
}
4445
}
45-
};
46+
} satisfies import("testplane").ConfigInput;

__fixtures/config/withExpressions.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
12
module.exports = {
23
foo: Boolean(100 + 500 * 1),
34
bar: 4,

__fixtures/config/withModules.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
const fs = require('fs');
12
const os = require('os');
23
const path = require('path');
3-
const fs = require('fs');
44

5+
// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
56
module.exports = {};
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
import fs from "fs";
12
import os from "os";
23
import path from "path";
3-
import fs from "fs";
44

5-
export default {};
5+
// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
6+
export default {} satisfies import("testplane").ConfigInput;

__fixtures/config/withVariables.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ const isCi = process.env.CI;
22
const numbersSum = 100 + 500;
33
const somePath = path.resolve(os.homedir(), ".some-folder");
44

5+
// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
56
module.exports = {};

0 commit comments

Comments
 (0)