Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ concurrency:

jobs:
build:
runs-on: self-hosted-arc
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions __fixtures/config/jsConfig.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
module.exports = {
gridUrl: 'local',
baseUrl: 'http://localhost',
Expand Down
1 change: 1 addition & 0 deletions __fixtures/config/withComments.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
module.exports = {
// some comment
// other comment
Expand Down
3 changes: 2 additions & 1 deletion __fixtures/config/withEverything.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import path from "path";

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

// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
export default {
gridUrl: "local",
baseUrl: "http://localhost",
Expand Down Expand Up @@ -42,4 +43,4 @@ export default {
token: path.join(os.homedir(), ".config", "tokens", "token")
}
}
};
} satisfies import("testplane").ConfigInput;
1 change: 1 addition & 0 deletions __fixtures/config/withExpressions.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
module.exports = {
foo: Boolean(100 + 500 * 1),
bar: 4,
Expand Down
3 changes: 2 additions & 1 deletion __fixtures/config/withModules.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const fs = require('fs');
const os = require('os');
const path = require('path');
const fs = require('fs');

// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
module.exports = {};
5 changes: 3 additions & 2 deletions __fixtures/config/withTypescript.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import fs from "fs";
import os from "os";
import path from "path";
import fs from "fs";

export default {};
// Read more about configuring Testplane at https://testplane.io/docs/v8/config/main/
export default {} satisfies import("testplane").ConfigInput;
1 change: 1 addition & 0 deletions __fixtures/config/withVariables.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ const isCi = process.env.CI;
const numbersSum = 100 + 500;
const somePath = path.resolve(os.homedir(), ".some-folder");

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