-
-
Notifications
You must be signed in to change notification settings - Fork 506
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -193,7 +193,7 @@ test("Get ignores (both .eleventyignore and .gitignore exists, but .gitignore is | |
]); | ||
}); | ||
|
||
test("Bad expected output, this indicates a bug upstream in a dependency. Input to 'src' and empty includes dir (issue #403, full paths in eleventyignore)", async (t) => { | ||
test("Bad expected output, this indicates a bug upstream in a dependency (update, was fixed in [email protected]). Input to 'src' and empty includes dir (issue #403, full paths in eleventyignore)", async (t) => { | ||
let eleventyConfig = await getTemplateConfigInstanceCustomCallback({ | ||
input: "test/stubs-403", | ||
output: "_site", | ||
|
@@ -209,8 +209,9 @@ test("Bad expected output, this indicates a bug upstream in a dependency. Input | |
|
||
t.deepEqual(await evf.getFiles(), [ | ||
"./test/stubs-403/template.liquid", | ||
// UPDATE: this was fixed in [email protected] | ||
// This should be excluded from this list but is not because the ignore content used an absolutePath above. | ||
"./test/stubs-403/_includes/include.liquid", | ||
// "./test/stubs-403/_includes/include.liquid", | ||
]); | ||
}); | ||
|
||
|