Skip to content
Snippets Groups Projects
Commit 2512e021 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

tst

parent 589b4a1e
No related branches found
No related tags found
2 merge requests!123Release 0.13.0,!122FIX: use paging during options generation in edit mode
Pipeline #41729 failed
...@@ -405,7 +405,7 @@ QUnit.test("retrieve_datatype_list", async function (assert) { ...@@ -405,7 +405,7 @@ QUnit.test("retrieve_datatype_list", async function (assert) {
var query_done; var query_done;
edit_mode.query = function (query) { edit_mode.query = function (query) {
var re = /^FIND (Record|File) "IceCore"$/g; var re = /^FIND (Record|File) "IceCore"/g;
assert.ok(query.match(re), `${query} should match ${re}`); assert.ok(query.match(re), `${query} should match ${re}`);
query_done(); query_done();
return []; return [];
...@@ -415,7 +415,7 @@ QUnit.test("retrieve_datatype_list", async function (assert) { ...@@ -415,7 +415,7 @@ QUnit.test("retrieve_datatype_list", async function (assert) {
edit_mode.query = function (query) { edit_mode.query = function (query) {
var re = /^FIND (Record|File) "Ice Core"$/g; var re = /^FIND (Record|File) "Ice Core"/g;
assert.ok(query.match(re), `${query} should match ${re}`); assert.ok(query.match(re), `${query} should match ${re}`);
query_done(); query_done();
return []; return [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment