Skip to content

Commit

Permalink
Be a little more patient for the store to load (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-jeckels authored Aug 23, 2023
1 parent b39df7b commit 9aa06e1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions genotyping/test/src/org/labkey/test/tests/IlluminaTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -349,10 +349,14 @@ private void verifyIlluminaSampleSheet()
Ext4FieldRef.getForLabel(this, a[0]).setValue(a[1]);
}
Ext4FieldRef combo = Ext4FieldRef.getForLabel(this, "Template");

waitFor(() ->
3 == ((Long)combo.getEval("store.getCount()")).intValue(),
"Combo store does not have correct record number. Should be 3, but was " + ((Long)combo.getEval("store.getCount()")).intValue(),
WAIT_FOR_JAVASCRIPT);

combo.setValue(TEMPLATE_NAME);

int count = ((Long)combo.getEval("store.getCount()")).intValue();
assertEquals("Combo store does not have correct record number", 3, count);
sleep(50);
assertEquals("Field value not set correctly", TEMPLATE_NAME, Ext4FieldRef.getForLabel(this, "Template").getValue());
_ext4Helper.clickTabContainingText("Preview Header");
Expand Down

0 comments on commit 9aa06e1

Please sign in to comment.