【问题标题】:Karma unit test Vue.js + FoundationKarma 单元测试 Vue.js + Foundation
【发布时间】:2018-02-19 15:01:56
【问题描述】:

我正在尝试将 Foundation for Sites 添加到我使用 Vue CLI 设置的第一个 Vue.js 项目中。

网站运行,但 Karma+Phantomjs 单元测试套件发出此错误:

PhantomJS 2.1.1 (Mac OS X 0.0.0) ERROR
  SyntaxError: Invalid character: '`'
  at webpack:///~/foundation-sites/js/foundation.util.core.js:24:0 <- index.js:10362

我认为这与 webpack/babel 和 Foundation 的 ES 模块加载有关。我不太清楚如何进一步诊断和解决问题。

这是我所做的代码更改的概述......

Main.js

import jQuery from 'jquery'
window.jQuery = jQuery
window.$ = jQuery

import Foundation from 'foundation-sites'
window.Foundation = Foundation

Hello.vue

<template> ... </template>

 <script>
 export default {
   name: 'hello',
   mounted () {
     this.dropdownMenu = new Foundation.DropdownMenu($('#dropdown-menu'), {
       // These options can be declarative using the data attributes
       hoverDelay: 300
     })
   },
   data () {
     return {
       msg: 'Welcome to Your Vue.js App'
     }
   },
   destroyed () {
     this.dropdownMenu.destroy()
   }
 }
 </script>

test/unit/index.js

import Vue from 'vue'
import Foundation from 'foundation-sites'
window.Foundation = Foundation

// ... auto-generated unit tests

test/unit/karma.conf.js

// This is a karma config file. For more details see
//   http://karma-runner.github.io/0.13/config/configuration-file.html
// we are also using it with karma-webpack
//   https://github.com/webpack/karma-webpack

var webpackConfig = require('../../build/webpack.test.conf')

module.exports = function (config) {
  config.set({
    // to run in additional browsers:
    // 1. install corresponding karma launcher
    //    http://karma-runner.github.io/0.13/config/browsers.html
    // 2. add it to the `browsers` array below.
    browsers: ['PhantomJS'],
    frameworks: ['mocha', 'sinon-chai', 'phantomjs-shim'],
    reporters: ['spec', 'coverage'],
    files: ['./index.js'],
    preprocessors: {
      './index.js': ['webpack', 'sourcemap']
    },
    webpack: webpackConfig,
    webpackMiddleware: {
      noInfo: true
    },
    coverageReporter: {
      dir: './coverage',
      reporters: [
        { type: 'lcov', subdir: '.' },
        { type: 'text-summary' }
      ]
    }
  })
}

webpack.base.conf.js

var path = require('path')
var utils = require('./utils')
var config = require('../config')
var vueLoaderConfig = require('./vue-loader.conf')

function resolve (dir) {
  return path.join(__dirname, '..', dir)
}

module.exports = {
  entry: {
    app: './src/main.js'
  },
  output: {
    path: config.build.assetsRoot,
    filename: '[name].js',
    publicPath: process.env.NODE_ENV === 'production'
      ? config.build.assetsPublicPath
      : config.dev.assetsPublicPath
  },
  resolve: {
    extensions: ['.js', '.vue', '.json'],
    alias: {
      'vue$': 'vue/dist/vue.esm.js',
      '@': resolve('src'),
    }
  },
  module: {
    rules: [
      {
        test: /\.(js|vue)$/,
        loader: 'eslint-loader',
        enforce: 'pre',
        include: [resolve('src'), resolve('test')],
        options: {
          formatter: require('eslint-friendly-formatter')
        }
      },
      {
        test: /\.vue$/,
        loader: 'vue-loader',
        options: vueLoaderConfig
      },
      {
        test: /\.js$/,
        loader: 'babel-loader',
        include: [resolve('src'), resolve('test')]
      },
      {
        test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
        loader: 'url-loader',
        options: {
          limit: 10000,
          name: utils.assetsPath('img/[name].[hash:7].[ext]')
        }
      },
      {
        test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
        loader: 'url-loader',
        options: {
          limit: 10000,
          name: utils.assetsPath('media/[name].[hash:7].[ext]')
        }
      },
      {
        test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
        loader: 'url-loader',
        options: {
          limit: 10000,
          name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
        }
      }
    ]
  }
}

【问题讨论】:

    标签: vue.js phantomjs zurb-foundation vue-cli


    【解决方案1】:

    我在使用不同的包时遇到了类似的问题,我发现是覆盖代码对此负责。

    在测试/单元下打开 index.js 并注释这两行:

    const srcContext = require.context('../../src', true, /^\.\/(?!main(\.js)?$)/)
    srcContext.keys().forEach(srcContext)
    

    这应该可以解决问题。

    【讨论】:

    • 感谢您的建议。不幸的是,这些行被注释掉后,我仍然看到同样的错误。
    【解决方案2】:

    我猜你正在使用 babel 进行编译并在你的 webpack 配置中定义它。没有发生这种转译是有道理的,因为在 es5 中不可用的插值字符串的反引号似乎失败了。

    假设您已经定义了 karma.conf.js,您可能只需要向其中添加您的 webpack 配置。如果你有 karma.conf.js,或许可以发布一下。

    我使用以下:

    // karma.conf.js
    const webpackConfig = require('./build/webpack.base')
    
    delete webpackConfig.entry
    
    webpackConfig.resolve.alias.vue = 'vue/dist/vue.js'
    
    module.exports = function karmaConfig(config) {
      config.set({
        browsers: ['PhantomJS'],
        frameworks: ['mocha', 'chai'],
        // this is the entry file for all our tests.
        files: ['ui-tests/index.js'],
        // we will pass the entry file to webpack for bundling.
        preprocessors: {
          'ui-tests/index.js': ['webpack'],
        },
        // use the webpack config
        webpack: webpackConfig,
        // avoid walls of useless text
        webpackMiddleware: {
          noInfo: true,
        },
        singleRun: true,
        junitReporter: {
          outputDir: '../../build/logs/',
          outputFile: 'junit-js-ui-test-report.xml',
          suite: 'review',
          useBrowserName: false,
          nameFormatter: undefined,
          classNameFormatter: undefined,
          properties: {},
        },
      })
    }
    

    和:

    // ui-tests/index.js
    const tests = require.context('..', true, /ui-tests\/.*\.spec$/)
    tests.keys().forEach(tests)
    

    并在我的包脚本中运行以下内容:

    ./node_modules/.bin/karma start karma.conf.js
    

    ******* 更新 *****

    不确定你是如何处理你的 babel 预设的,也许你正在使用 babelrc 并且没有找到它(或者无论如何不在你的基本 webpack 配置中)但是你可以尝试添加类似的东西,但是符合您的要求:

    babel: {
      babelrc: false,
      presets: [
        ['es2015' {modules: false}],
        'stage-1'
     ]
    },
    

    到 build/webpack.test.conf 中的 webpack 配置...虽然我不知道你的 test.conf 中有什么,但很难说

    【讨论】:

    • Vue Cli 设置了相当好的模块化 karma 和 webpack 配置。我刚刚添加了 karma 测试配置,它看起来与您发布的示例几乎相同。我注意到 webpack 配置为 Vue 'esm' 源提供了别名。我不确定我是否应该为 Foundation 做类似的事情。在问题中添加了业力测试配置和 webpack-base 配置。
    • 我刚刚将基础添加到我设置了业力的 vue 应用程序中,并得到与您相同的错误。所以它不是特定于您的设置的东西。我有其他 ES6 导入工作正常
    【解决方案3】:

    我找到的解决方案是通过 Babel 加载 Foundation。

    webpack.base.conf.js

    {
      test: /\.js$/,
      loader: 'babel-loader',
      include: [
        resolve('src'),
        resolve('test'),
        resolve('node_modules/foundation-sites') // Added this line.
      ]
    },
    

    这其中的主要原因其实在Foundation docs中有解释:

    我们的 JavaScript 使用了 ECMAScript 2015 的一些功能。如果您将 Foundation 与构建系统一起使用,您需要将我们的代码编译为 ES5。我们在模板中使用 Babel 来做到这一点。 Babel 为每个可以想象的构建系统提供插件,因此将其集成到现有设置中很容易。

    Foundation 文档继续建议包含和设置 babel "presets": ["es2015"],但是 Vue CLI 的设置已经略有不同。

    Vue CLI 已经使用了babel-preset-envbabel-preset-stage2 插件,我已经知道它们负责 ES2015 > ES5 转换。 Vue CLI 使用多个加载器设置 webpack,因此似乎有必要将 Foundation 添加到 babel-loader 配置中。

    目前我正在导入 Foundation 并将其从 Vue 的 main.js 入口点添加到全局 window。接下来我可能会看看我是否可以使用Expose loader 公开它。

    【讨论】: