diff options
Diffstat (limited to 'std/encoding/toml_test.ts')
-rw-r--r-- | std/encoding/toml_test.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/std/encoding/toml_test.ts b/std/encoding/toml_test.ts index 5c4c63b5a..5d651c822 100644 --- a/std/encoding/toml_test.ts +++ b/std/encoding/toml_test.ts @@ -29,6 +29,8 @@ Deno.test({ str6: "The quick brown\nfox jumps over\nthe lazy dog.", lines: "The first newline is\ntrimmed in raw strings.\n All other " + "whitespace\n is preserved.", + withApostrophe: "What if it's not?", + withSemicolon: `const message = 'hello world';`, }, }; const actual = parseFile(path.join(testFilesDir, "string.toml")); |