Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixed phantom viewport size
- Loading branch information
Showing
with
4 additions
and
1 deletion.
-
+4
−1
gulpfile.coffee
|
@@ -75,7 +75,10 @@ gulp.task "build-test", -> |
|
|
gulp.task "test", ["build-debug", "build-test"], -> |
|
|
return gulp |
|
|
.src("test/phantomjs/index.html") |
|
|
.pipe(phantomjs({reporter:"dot"})) |
|
|
.pipe(phantomjs({reporter:"dot", viewportSize: { |
|
|
width: 1024, |
|
|
height: 768 |
|
|
}})) |
|
|
|
|
|
gulp.task "watch", -> |
|
|
gulp.run "test", -> |
|
|