Skip to content

Commit

Permalink
chore: add tsconfig and build for e2e
Browse files Browse the repository at this point in the history
This was previously implicit and depended on a the root build. This
clashes with my attempts to update the typescript version, so I am
scoping the e2e tests to their own build.
  • Loading branch information
kanej committed Jan 15, 2025
1 parent 1ddb6d7 commit 52cb23e
Show file tree
Hide file tree
Showing 20 changed files with 53 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"url": "https://github.com/NomicFoundation/hardhat-vscode/issues"
},
"scripts": {
"build": "tsc -b ./client/tsconfig.json && tsc -b ./server/tsconfig.build.json && tsc -b ./coc/tsconfig.json && tsc -b",
"build": "tsc -b ./client/tsconfig.json && tsc -b ./server/tsconfig.build.json && tsc -b ./coc/tsconfig.json",
"watch": "concurrently -n client,server \"tsc -b -w ./client/tsconfig.json\" \"tsc -b -w ./server/tsconfig.build.json\"",
"test:unit": "npm -w server run test",
"test:protocol": "npm -w test/protocol run test",
"test:e2e": "npm run build && node ./out/test/runTests.js",
"test:e2e": "npm -w test/e2e run test",
"test": "npm run test:unit && npm run test:protocol && npm run test:e2e",
"test:coverage": "npm -w server run test:coverage",
"test:codecov": "npm -w server run test:codecov",
Expand Down
21 changes: 21 additions & 0 deletions test/e2e/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/** @type {import('eslint').Linter.Config} */
module.exports = {
root: true,
extends: [`../../.eslintrc.js`],
parserOptions: {
project: `${__dirname}/tsconfig.json`,
sourceType: "module",
},
overrides: [
{
files: ["**/*.ts"],
rules: {
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-empty-function": "warn",
"@typescript-eslint/no-non-null-assertion": "off",
"no-empty": "warn",
},
},
],
};
1 change: 1 addition & 0 deletions test/e2e/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
out
5 changes: 4 additions & 1 deletion test/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "cd ./projects/main && npm install"
"postinstall": "cd ./projects/main && npm install",
"pretest": "tsc -b ./tsconfig.json",
"test": "node ./out/src/runTests.js",
"clean": "rimraf out .nyc_output coverage *.tsbuildinfo"
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 12 additions & 4 deletions test/runTests.ts → test/e2e/src/runTests.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
import * as path from "path";
import { runTests } from "@vscode/test-electron";

(async () => {
const main = async () => {
try {
// The folder containing the Extension Manifest package.json
// Passed to `--extensionDevelopmentPath`
const extensionDevelopmentPath = path.resolve(
__dirname,
"..",
"..",
"..",
"..",
"client"
);

// The path to test runner
// Passed to --extensionTestsPath
const extensionTestsPath = path.resolve(__dirname, "e2e", "index");
const extensionTestsPath = path.resolve(__dirname, "index");

const folder = path.resolve(__dirname, "..", "..", "test", "e2e");
const folder = path.resolve(__dirname, "..", "..", "..", "e2e");

// Download VS Code, unzip it and run the e2e test
await runTests({
Expand All @@ -39,4 +41,10 @@ import { runTests } from "@vscode/test-electron";
console.error("Failed to run tests, err:", err);
process.exitCode = 1;
}
})();
};

main().catch((err) => {
// eslint-disable-next-line no-console
console.error("Failed to run tests, err:", err);
process.exitCode = 1;
});
File renamed without changes.
File renamed without changes.
13 changes: 13 additions & 0 deletions test/e2e/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"module": "commonjs" /* Specify what module code is generated. */,
"resolveJsonModule": true /* Enable importing .json files. */,
"outDir": "./out" /* Specify an output folder for all emitted files. */,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"strict": true /* Enable all strict type-checking options. */,
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["src", "projects/main"]
}

0 comments on commit 52cb23e

Please sign in to comment.