Skip to content

Commit

Permalink
Skip TOML parsing test (fails on Windows), failure in dependency jons…
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Jun 25, 2019
1 parent b2b1388 commit a1dde21
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,4 @@ trim_trailing_whitespace = true
charset = utf-8

[*.js]
insert_final_newline = true

[*.njk]
insert_final_newline = true
3 changes: 2 additions & 1 deletion test/TemplateTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,8 @@ test("Custom Front Matter Parsing Options (no newline after excerpt separator)",
t.is(fulldata.page.excerpt.trim(), "This is an excerpt.");
});

test("Custom Front Matter Parsing Options (using TOML)", async t => {
test.skip("Custom Front Matter Parsing Options (using TOML)", async t => {
// Depends on https://github.com/jonschlinkert/gray-matter/issues/92 for Windows
let newConfig = Object.assign({}, config);
let toml = require("toml");

Expand Down
2 changes: 1 addition & 1 deletion test/stubs/custom-frontmatter/template-toml.njk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---toml
front = "hello"
---
This is content.
This is content.

0 comments on commit a1dde21

Please sign in to comment.