Skip to content

Commit

Permalink
Added non-working gulpfile
Browse files Browse the repository at this point in the history
It does not work with Jest.  Nerajno/gulp-jest#65 It's laso
generally not maintained, apparently...
  • Loading branch information
JJ committed Mar 15, 2021
1 parent 8646794 commit 1d74e21
Show file tree
Hide file tree
Showing 4 changed files with 9,053 additions and 4,400 deletions.
17 changes: 17 additions & 0 deletions gulpfile.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const { src, dest } = require("gulp");

const jester = require("gulp-jest").default;

function testing() {
return src("src/__tests__").pipe(
jester({
preprocessorIgnorePatterns: [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
],
automock: false
})
);
}

exports.default = testing;
Loading

0 comments on commit 1d74e21

Please sign in to comment.