Skip to content

Commit

Permalink
Fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ilia-db committed Oct 22, 2024
1 parent ece4b34 commit a7b3ec0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/databricks-vscode/src/test/e2e/run_files.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ describe("Run files", async function () {
const notifications = await workbench.getNotifications();
for (const notification of notifications) {
const message = await notification.getMessage();
if (message.includes("Deploying")) {
if (message.includes("Uploading bundle assets")) {
// Make sure the CLI is actually spawned before cancelling
await sleep(1000);
await sleep(500);
await notification.takeAction("Cancel");
return true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class BundleCommands implements Disposable {
await window.withProgress(
{
location: ProgressLocation.Notification,
title: "Synchronising bundle assets",
title: "Uploading bundle assets",
cancellable: true,
},
async (progress, token) => {
Expand Down

0 comments on commit a7b3ec0

Please sign in to comment.