Skip to content

Commit 3bbf882

Browse files
author
Simon Laden
committed
FISH-8908 - moved and renamed files to pass yarn compile
1 parent a27cb99 commit 3bbf882

14 files changed

Lines changed: 55 additions & 12 deletions

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@
711711
"compile": "tsc -p ./",
712712
"watch": "tsc -watch -p ./",
713713
"pretest": "yarn run compile",
714-
"test:e2e": "playwright test -c test/e2e/playwright.config.ts",
714+
"test:e2e": "playwright test -c src/test/e2e/playwright.config.ts",
715715
"tslint": "tslint -t verbose src/**/*.ts"
716716
},
717717
"dependencies": {
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import fs from 'fs';
2-
import os from 'os';
3-
import path from 'path';
1+
import * as fs from 'fs';
2+
import * as os from 'os';
3+
import * as path from 'path';
44
import type { Page } from '@playwright/test';
55
import { _electron, test as base } from '@playwright/test';
66
import { downloadAndUnzipVSCode } from '@vscode/test-electron/out/download';
Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { defineConfig } from '@playwright/test';
2-
import type { TestOptions } from './baseTest.js';
2+
import type { TestOptions } from './basePage.js';
33

44
// eslint-disable-next-line import-x/no-default-export
55
export default defineConfig<TestOptions>({
@@ -14,7 +14,7 @@ export default defineConfig<TestOptions>({
1414
timeout: 60000, // 1 minute
1515
},
1616
globalSetup: './setup',
17-
outputDir: '../../out/test-results',
17+
outputDir: '../../../out/test-results',
1818
projects: [
1919
{
2020
name: 'VSCode stable',
@@ -29,5 +29,5 @@ export default defineConfig<TestOptions>({
2929
},
3030
},
3131
],
32-
testMatch: 'specs/*.test.ts'
32+
testMatch: '**/*.test.ts'
3333
});
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)