generator-babel-boilerplate浏览器测试

时间:2016-03-01 19:09:06

标签: javascript webpack babeljs

我使用generator-babel-boilerplate然后运行npm run test-browser。 这可以正常运行,但我需要在浏览器中测试一些内容,而且我不确定如何查看所提供的内容。

使用以下功能:

  • localhost
  • localhost:9000
  • localhost:8080

它在哪里提供文件,如果有的话?

3 个答案:

答案 0 :(得分:1)

您必须在浏览器中打开runner.html文件:

open ./test/runner.html

答案 1 :(得分:0)

我在generator-babel-boilerplate's source code中找到了这一行:

$.livereload.listen({port: 35729, host: 'localhost', start: true});

所以看来localhost:35729可能有用。

答案 2 :(得分:0)

据我所知,没有服务器可以提供文件。

我需要将以下内容添加到gulpfile中:

gulp.task('connect', function() {
  connect.server({
    port: 7777,
    livereload: true,
    root: __dirname,
    https: false
  });
});

// then add connect to the test-browser tasks 
gulp.task('test-browser', ['connect', 'clean-tmp'], testBrowser);