Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe(
});

it("3. Create new branch, commit data in that branch , delete the branch, verify data should not reflect in master ", () => {
gitSync.CreateGitBranch("", true);
gitSync.CreateGitBranch("", true, false);
cy.wait(1000);
PageLeftPane.switchSegment(PagePaneSegment.UI);
cy.dragAndDropToCanvas("chartwidget", { x: 210, y: 300 });
Expand Down
4 changes: 2 additions & 2 deletions app/client/cypress/limited-tests.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# To run only limited tests - give the spec names in below format:
#cypress/e2e/Regression/ClientSide/VisualTests/JSEditorIndent_spec.js
cypress/e2e/Regression/ClientSide/Git/GitSync/DeleteBranch_spec.js
# For running all specs - uncomment below:
#cypress/e2e/**/**/*
cypress/e2e/Regression/ClientSide/Anvil/Widgets/*
#cypress/e2e/Regression/ClientSide/Anvil/Widgets/*

#ci-test-limit uses this file to run minimum of specs. Do not run entire suite with this command.
1 change: 1 addition & 0 deletions app/client/cypress/support/Pages/GitSync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ export class GitSync {
toUseNewGuid = false,
assertCreateBranch = true,
) {
this.agHelper.WaitUntilEleDisappear(this.commonLocators._btnSpinner);
this.agHelper.AssertElementVisibility(this.locators.quickActionsPullBtn);
if (toUseNewGuid) this.agHelper.GenerateUUID();
this.agHelper.AssertElementExist(this.locators.quickActionsCommitBtn);
Expand Down
Loading