tests: remove finished TODO

Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
This commit is contained in:
Tim Culverhouse 2024-01-31 20:07:02 -06:00
parent a8e77a23ae
commit 927b4120b5

View file

@ -791,8 +791,6 @@ test "parse: single codepoint with more in buffer" {
}
test "parse: multiple codepoint grapheme" {
// TODO: this test is passing but throws a warning. Not sure how we'll
// handle graphemes yet
const input = "👩‍🚀";
var parser: Parser = .{};
const result = try parser.parse(input);
@ -807,8 +805,6 @@ test "parse: multiple codepoint grapheme" {
}
test "parse: multiple codepoint grapheme with more after" {
// TODO: this test is passing but throws a warning. Not sure how we'll
// handle graphemes yet
const input = "👩🚀abc";
var parser: Parser = .{};
const result = try parser.parse(input);