Skip to content
Merged
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
5 changes: 5 additions & 0 deletions src/org/labkey/test/tests/AbstractQWPTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import org.labkey.test.Locator;
import org.labkey.test.Locators;
import org.labkey.test.WebTestHelper;
import org.labkey.test.util.search.SearchAdminAPIHelper;
import org.openqa.selenium.Alert;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedConditions;
Expand Down Expand Up @@ -60,6 +61,10 @@ protected void testQWPDemoPage()

getTabSignalsPairs().stream().forEach(this::testQWPTab);

// Indexing 'sampleDataTest5k' holds locks that deadlock with the DROP TABLE, so let it finish first
sleep(2_000);
SearchAdminAPIHelper.waitForIndexer();

log("Drop QWPDemo test data");
beginAt(WebTestHelper.buildURL("simpletest", getProjectName(), "QWPDemo"));
clickButton("Drop schema and clear test data"); // drop domain, needed for clean up project
Expand Down