Skip to content
Snippets Groups Projects
Commit 7d77f355 authored by Ankit Sharma [Microsoft]'s avatar Ankit Sharma [Microsoft]
Browse files

Merge branch 'add_delay_to_probe_search' into 'master'

Adding delay for search records

See merge request osdu/platform/deployment-and-operations/infra-azure-provisioning!525
parents 91224f2d 99f28810
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,11 @@ const minorVersion = testUtils.between(1, 100000);
let runId = `${majorVersion}.${minorVersion}`;
console.log(`run ID: ${runId}`);
function freeze(time) {
const stop = new Date().getTime() + time;
while(new Date().getTime() < stop);
}
let test = {
runId: runId,
scenario: scenario,
......@@ -330,7 +335,7 @@ describe(scenario, (done) => {
});
});
});
freeze(5000);
describe('Search Record', (done) => {
it("Search: Record", done => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment