From 5518b008b8df51c861e9e6040236ebe7ec5f854c Mon Sep 17 00:00:00 2001 From: Vincent LE GOFF Date: Fri, 29 Mar 2019 15:51:23 +0100 Subject: toml: fix parsing comments (denoland/deno_std#311) Original: https://github.com/denoland/deno_std/commit/a48fdd6a298e48a60dd8d56f2b459294892abfc3 --- toml/parser_test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'toml/parser_test.ts') diff --git a/toml/parser_test.ts b/toml/parser_test.ts index cc6675296..104428b25 100644 --- a/toml/parser_test.ts +++ b/toml/parser_test.ts @@ -149,7 +149,8 @@ test({ deno: "is", not: "[node]", regex: "", - NANI: "何?!" + NANI: "何?!", + comment: "Comment inside # the comment" }; const actual = parseFile(path.join(testFilesDir, "simple.toml")); assertEquals(actual, expected); -- cgit v1.2.3