Skip to content

Commit

Permalink
skip tests for basic test run
Browse files Browse the repository at this point in the history
  • Loading branch information
vankop committed May 8, 2024
1 parent c276484 commit ca4e22c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion test/ConfigTestCases.template.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const describeCases = config => {
describe(testName, function () {
const testDirectory = path.join(casesPath, category.name, testName);
const filterPath = path.join(testDirectory, "test.filter.js");
if (fs.existsSync(filterPath) && !require(filterPath)()) {
if (fs.existsSync(filterPath) && !require(filterPath)(config)) {
describe.skip(testName, () => {
it("filtered", () => {});
});
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = config => config.cache;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = config => config.cache;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = config => config.cache;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = config => config.cache;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = config => config.cache;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = config => config.cache;

0 comments on commit ca4e22c

Please sign in to comment.