commit 3ad826ae55710ff5b56acfdcfed26882ad90beb4
parent e91a381ef9f1feecbd2c898e4dbddc263e986697
Author: Ben Noordhuis <info@bnoordhuis.nl>
Date: Wed, 29 Nov 2023 08:50:53 +0100
Unbroke tests/test_test_bjson.js
Diffstat:
1 file changed, 0 insertions(+), 13 deletions(-)
diff --git a/quickjs/tests/test_bjson.js b/quickjs/tests/test_bjson.js
@@ -144,18 +144,6 @@ function bjson_test_reference()
}
}
-function bjson_test_regexp()
-{
- var buf, r;
-
- bjson_test(/xyzzy/);
- bjson_test(/xyzzy/digu);
-
- buf = bjson.write(/(?<ππΈπ°>dog)/);
- r = bjson.read(buf, 0, buf.byteLength);
- assert("sup dog".match(r).groups["ππΈπ°"], "dog");
-}
-
function bjson_test_all()
{
var obj;
@@ -198,7 +186,6 @@ function bjson_test_all()
}
bjson_test_reference();
- bjson_test_regexp();
}
bjson_test_all();