Skip to content

Commit

Permalink
test: disable vscode tests
Browse files Browse the repository at this point in the history
See details in #342
  • Loading branch information
bd82 committed Dec 17, 2020
1 parent 4f9754d commit 0bdba8e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ async function main(): Promise<void> {
const scenarioPaths = await globby(`${testPkgFolder}/**/index.js`);
// Use for of + await to ensure running in sequence because vscode-test library cannot start multiple vscode instances at the same time
for (const path of scenarioPaths) {
await runTests({
extensionDevelopmentPath,
extensionTestsPath: path,
});
console.warn(
`SKIPPING TEST: ${path}.\nsee: https://github.com/SAP/ui5-language-assistant/issues/342`
);
// await runTests({
// extensionDevelopmentPath,
// extensionTestsPath: path,
// });
}
} catch (err) {
console.error("Failed to run tests: ", err);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {

const EXTENSION_START_TIMEOUT = 5000;

describe("the Language Server Client Validations Integration Tests - Flex Disabled", () => {
describe.skip("the Language Server Client Validations Integration Tests - Flex Disabled", () => {
const scenarioPath = resolve(
rootPkgFolder,
"test",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const EXTENSION_START_TIMEOUT = 5000;
const EXECUTE_COMMAD_TIMEOUT = 500;
const UI5LANG_ERROR_MSG = "UI5 Language Assistant";

describe("the Language Server Client Validations Integration Tests - Flex Enabled", () => {
describe.skip("the Language Server Client Validations Integration Tests - Flex Enabled", () => {
const scenarioPath = resolve(
rootPkgFolder,
"test",
Expand Down

0 comments on commit 0bdba8e

Please sign in to comment.