Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Be a little more patient for the store to load #115

Merged
merged 1 commit into from
Aug 23, 2023
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
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