This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Internal: Stop using nyc --all for accurate reporting
Use empty test files instead. See istanbuljs/nyc#181 Closes #247
- Loading branch information
Showing
11 changed files
with
86 additions
and
4 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import test from "ava" | ||
|
||
// files added to report accurate coverage | ||
import "../index.js" | ||
|
||
test("todo", () => { | ||
console.log("TODO: test src/Link/*") | ||
}) |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import test from "ava" | ||
|
||
// files added to report accurate coverage | ||
import "../index.js" | ||
|
||
test("todo", () => { | ||
console.log("TODO: test src/PageContainer/index*") | ||
}) |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import test from "ava" | ||
|
||
// files added to report accurate coverage | ||
import "../index.js" | ||
|
||
test("todo", () => { | ||
console.log("TODO: test src/utils/catch-links/*") | ||
}) |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import test from "ava" | ||
|
||
// files added to report accurate coverage | ||
import "../data/questions.js" | ||
import "../data/template.js" | ||
import "../utils/inquirer.js" | ||
// we need to explode those files into function and just call functions | ||
// in the bins | ||
// import "./index.js" | ||
// import "./statinamic-setup.js" | ||
|
||
test("todo", () => { | ||
console.log("TODO: test src/bin/*") | ||
}) |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import test from "ava" | ||
|
||
// files added to report accurate coverage | ||
import "../index.js" | ||
import "../webpack.js" | ||
|
||
test("todo", () => { | ||
console.log("TODO: test src/builder/*") | ||
}) |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import test from "ava" | ||
|
||
// files added to report accurate coverage | ||
import "../DevTools.js" | ||
|
||
test("todo", () => { | ||
console.log("TODO: test src/client/DevTools*") | ||
}) |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import test from "ava" | ||
|
||
// files added to report accurate coverage | ||
import "../hot-md.js" | ||
|
||
test("todo", () => { | ||
console.log("TODO: test src/client/hot-md") | ||
}) |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import test from "ava" | ||
|
||
// files added to report accurate coverage | ||
import "../index.js" | ||
|
||
test("todo", () => { | ||
console.log("TODO: test src/client/index") | ||
}) |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import test from "ava" | ||
|
||
// files added to report accurate coverage | ||
import "../index.js" | ||
|
||
test("todo", () => { | ||
console.log("TODO: test src/static/index*") | ||
}) |