-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add a very basic e2e test setup * add spotify studio graph * add schema via http * work on tests * adjust configs * some more completion tests * split tests, add ts-jest, hover tests * add localSchemaArray test case * use different config formats in tests * update tsconfig * forward argv to jest
- Loading branch information
Showing
41 changed files
with
3,448 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"vscode-apollo": patch | ||
--- | ||
|
||
Modernization | ||
|
||
- update `glob` | ||
- add E2E tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// see https://github.com/microsoft/vscode-test/issues/37#issuecomment-700167820 | ||
const path = require("path"); | ||
|
||
module.exports = { | ||
moduleFileExtensions: ["js", "ts"], | ||
testMatch: ["<rootDir>/src/**/*.e2e.ts"], | ||
testEnvironment: "./src/__e2e__/vscode-environment.js", | ||
setupFiles: ["./src/__e2e__/setup.js"], | ||
verbose: true, | ||
moduleNameMapper: { | ||
vscode: path.join(__dirname, "src", "__e2e__", "vscode.js"), | ||
}, | ||
transform: { | ||
"^.+\\.(ts)$": "ts-jest", | ||
}, | ||
prettierPath: null, | ||
}; |
Oops, something went wrong.