Skip to content

Commit 6a4c4dd

Browse files
Integration test fixes for new testing infra (#42)
1 parent b725d29 commit 6a4c4dd

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

packages/databricks-sdk-js/src/services/WorkflowRun.integ.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ describe(__filename, function () {
6060

6161
let jobPath = `/tmp/sdk-js-integ-${integSetup.testRunId}.py`;
6262
let workspaceService = new WorkspaceService(integSetup.client);
63+
64+
await workspaceService.mkdirs({path: "/tmp"});
65+
6366
await workspaceService.import({
6467
path: jobPath,
6568
format: "SOURCE",

packages/databricks-vscode/src/test/e2e/configure.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe("Configure Databricks Extension", function () {
2323
// this will be populated by the tests
2424
let clusterId: string;
2525

26-
this.timeout(20_000);
26+
this.timeout(10 * 60 * 1000);
2727

2828
before(async () => {
2929
browser = VSBrowser.instance;

packages/databricks-vscode/src/test/e2e/run_on_cluster.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe("Run python on cluster", function () {
1212
let projectDir: string;
1313
let cleanup: () => void;
1414

15-
this.timeout(20_000);
15+
this.timeout(10 * 60 * 1000);
1616

1717
before(async () => {
1818
browser = VSBrowser.instance;

0 commit comments

Comments
 (0)