]> Lady’s Gitweb - Pisces/blobdiff - string.test.js
Add buffer getters and setters to binary.js
[Pisces] / string.test.js
index 94aec3701c30abfb4bb2298c739cfd6bc11496de..e3d10968b0bb3bd401a2e564846a32b9314d4b60 100644 (file)
@@ -10,7 +10,6 @@
 import {
   assert,
   assertEquals,
-  assertSpyCall,
   assertSpyCalls,
   assertStrictEquals,
   assertThrows,
@@ -101,6 +100,7 @@ describe("Matcher", () => {
           return "etaoin";
         },
       });
+      assertEquals([...result], ["etaoin", "e"]);
       assertSpyCalls(constraint, 1);
       assertStrictEquals(constraint.calls[0].args[0], "etaoin");
       assertEquals([...constraint.calls[0].args[1]], ["etaoin", "e"]);
@@ -184,6 +184,12 @@ describe("Matcher", () => {
     });
   });
 
+  describe("::toString", () => {
+    it("[[Get]] does not throw an error", () => {
+      new Matcher(/(?:)/u).toString();
+    });
+  });
+
   describe("::unicode", () => {
     it("[[Get]] returns true when the unicode flag is present", () => {
       assertStrictEquals(new Matcher(/(?:)/u).unicode, true);
This page took 0.047164 seconds and 4 git commands to generate.