6

Does intern testing framework have any gulp plug-ins or docs to integrate with gulp?

Allan McLemore
  • 1,222
  • 2
  • 11
  • 12

2 Answers2

5

it doesn't look like it but I've done this using gulp-shell :

gulp.task('intern', shell.task([
    'node_modules/intern/bin/intern-client.js config=tests/intern'
]));

Hope it helps :)

dviramontes
  • 146
  • 1
  • 5
1

I just found gulp-intern on github. Haven't tested it yet, though.

tossbyte
  • 380
  • 4
  • 9