diff options
Diffstat (limited to 'src/flatmatter.test.ts')
| -rw-r--r-- | src/flatmatter.test.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/flatmatter.test.ts b/src/flatmatter.test.ts index 8e480fc..17954d3 100644 --- a/src/flatmatter.test.ts +++ b/src/flatmatter.test.ts @@ -87,7 +87,9 @@ test("Piped function by call usage", () => { test("Invalid value in pipe", () => { const config = FlatMatter.config('a: "value" / / asd'); - expect(config).toStrictEqual({}); + expect(config).toStrictEqual({ + a: "value", + }); }); test("Invalid value in pipe, 2", () => { |
