summaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorliabru <liabru@brm.io>2015-10-17 19:00:37 +0100
committerliabru <liabru@brm.io>2015-10-17 19:00:37 +0100
commita7d35dca8b452d29c6183ca7a01e9da846f90cf2 (patch)
tree53da201ff93902f526d4c617f09cb18ec018cff7 /gulpfile.js
parent91e50ad957b99dc30fab31e6aeb04f8669a63c10 (diff)
parent344059870c40daf701bf514b45c4524b8483dfee (diff)
downloadjquery-match-height-a7d35dca8b452d29c6183ca7a01e9da846f90cf2.zip
jquery-match-height-a7d35dca8b452d29c6183ca7a01e9da846f90cf2.tar.gz
jquery-match-height-a7d35dca8b452d29c6183ca7a01e9da846f90cf2.tar.bz2
Merge branch 'feature/tests' into develop
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js
new file mode 100644
index 0000000..3da2d0d
--- /dev/null
+++ b/gulpfile.js
@@ -0,0 +1,23 @@
+// TODO: build task
+// TODO: minify task
+// TODO: eslint task
+// TODO: cloud selenium server to test more browsers
+// TODO: add more test specs (see matchHeight.spec.js)
+// TODO: travis CI
+
+var gulp = require('gulp');
+var webdriver = require('gulp-webdriver');
+var webserver = require('gulp-webserver');
+
+gulp.task('test', function() {
+ return gulp.src('test/conf/wdio.conf.js').pipe(webdriver());
+});
+
+gulp.task('serve', function() {
+ gulp.src('.')
+ .pipe(webserver({
+ livereload: true,
+ directoryListing: true,
+ open: 'http://localhost:8000/test/page/test.html'
+ }));
+}); \ No newline at end of file