You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before #452 was merged, this was the output from npx ava --verbose test/TemplateWriterTest.js
npx ava --verbose test/TemplateWriterTest.js
- renderData should exist and be resolved in a collection (Issue #289)
- Markdown with alias
- JavaScript with alias
✔ Glob Watcher Files with Passthroughs
✔ _createTemplateMap (no leading dot slash) (217ms)
✔ Write Test 11ty.js (193ms)
✔ _getCollectionsData with custom collection (ascending) (272ms)
✔ _getCollectionsData with custom collection (descending) (273ms)
✔ _getCollectionsData with custom collection (filter only to markdown input) (274ms)
✔ Custom collection returns array (253ms)
✔ Custom collection returns a string (254ms)
✔ Custom collection returns an object (256ms)
✔ Output is a subdir of input (322ms)
✔ _createTemplateMap (298ms)
✔ getCollectionsData (295ms)
✔ _testGetAllTags (294ms)
✔ Collection of files sorted by date (297ms)
✔ fileSlug should exist in a collection (275ms)
✔ Pagination with a Collection (319ms)
✔ Use a collection inside of a layout (327ms)
✔ Use a collection inside of a template (330ms)
✔ Pagination and TemplateContent (316ms)
✔ Pagination with a Collection from another Paged Template (341ms)
✔ Pagination with a Collection (apply all pages to collections) (343ms)
21 tests passed
3 tests skipped
The tests all were under 400ms each.
Now after #452, it looks like there are some mega tests happening here via npx ava --verbose test/TemplateWriterTest.js:
- renderData should exist and be resolved in a collection (Issue #289)
- Markdown with alias
- JavaScript with alias
✔ Glob Watcher Files with Passthroughs
✔ _createTemplateMap (no leading dot slash)
✔ Write Test 11ty.js (184ms)
✔ _getCollectionsData with custom collection (ascending) (263ms)
✔ _getCollectionsData with custom collection (descending) (261ms)
✔ _getCollectionsData with custom collection (filter only to markdown input) (262ms)
✔ Custom collection returns array (240ms)
✔ Custom collection returns a string (240ms)
✔ Custom collection returns an object (241ms)
✔ Output is a subdir of input (307ms)
✔ _createTemplateMap (290ms)
✔ _testGetAllTags (278ms)
✔ Collection of files sorted by date (280ms)
✔ getCollectionsData (287ms)
✔ fileSlug should exist in a collection (262ms)
✔ Naughty Passthrough paths (269ms)
✔ Pagination with a Collection (345ms)
✔ Use a collection inside of a layout (412ms)
✔ Use a collection inside of a template (446ms)
✔ Pagination and TemplateContent (439ms)
✔ Passthrough file output (1m 8.2s)
✔ Pagination with a Collection from another Paged Template (2m 8.8s)
✔ Pagination with a Collection (apply all pages to collections) (3m 8s)
23 tests passed
3 tests skipped
Note the 1m 8s, 2m 9s, 3m 8s tests. Two steps here:
make sure this isn't a performance regression.
make these tests faster
The text was updated successfully, but these errors were encountered:
cc @MadeByMike
Before #452 was merged, this was the output from
npx ava --verbose test/TemplateWriterTest.js
The tests all were under 400ms each.
Now after #452, it looks like there are some mega tests happening here via
npx ava --verbose test/TemplateWriterTest.js
:Note the 1m 8s, 2m 9s, 3m 8s tests. Two steps here:
The text was updated successfully, but these errors were encountered: