unit-testing - 如何使用 Jest 对 quasar 应用程序进行单元测试?

标签 unit-testing vue.js jestjs quasar-framework

我有一个使用 quasar-cli 生成的 quasar 应用程序。

对于这样的应用程序,如何将单元测试集成到像 Jest 这样的测试运行器中?

我已经在我的 Jest 配置中添加了这个

"moduleNameMapper": {
    "quasar": "<rootDir>/node_modules/quasar-framework"
}

不幸的是,Jest 报告回来

Cannot find module 'quasar' from 'index.vue'

这是 Vue 文件的一个片段

<template>
<div style="padding-top: 20px" v-if="refund.type != null ">
      <q-btn :label="'Issue ' + (  currency(refund.amount)) + ' Refund'" :disable="refund.amount <= 0" @click="issueRefund()" color="green" class="full-width" :loading="noteLoading" />
    </div>
</template>

<script>
import { Notify } from "quasar"; // here is where I am using Quasar
issueRefund() {
  this.noteLoading = true;
  this.$axios
    .post(`${BASE_URL}/issue_refund/?secret=${this.secret}`, {
      refund: this.refund,
      agent_email: this.userEmail,
      order_id: this.selectedOrder.id,
      agent_name: this.$route.query.user_name,
      order_number: this.selectedOrder.order_number,
      ticket_id: this.ticketId
    })
    .then(res => {
        this.noteLoading = false;
      if ((res.data.res === "success")) {
        Notify.create({
          position: "bottom",
          type: "positive",
          message: "Refund Issued."
        });
        this.selectedOrder = res.data.order;
        this.resetRefundObj();
        this.$refs.refundDiag.hide();
      } else {
        Notify.create({
          position: "bottom",
          type: "negative",
          message: res.data.error
        });
      }
    });
},
</script>

最佳答案

将 Jest 与 Quasar 集成非常简单。你需要两个包,babel-jestjest

yarn add jest babel-jest -D

添加这两个依赖项后,在项目的根目录下创建一个 jest.config.js 文件——这里是所有 jest 配置的地方。

jest.config.js 文件应该是这样的;

module.exports = {
  globals: {
    __DEV__: true,
  },
  verbose: false, // false since we want to see console.logs inside tests
  bail: false,
  testURL: 'http://localhost/',
  testEnvironment: 'jsdom',
  testRegex: './__unit__/.*.js$',
  rootDir: '.',
  testPathIgnorePatterns: [
    '<rootDir>/components/coverage/',
    '<rootDir>/test/cypress/',
    '<rootDir>/test/coverage/',
    '<rootDir>/dist/',
    '<rootDir>/node_modules/',
  ],
  moduleFileExtensions: ['js', 'json', 'vue'],
  moduleNameMapper: {
    '^vue$': 'vue/dist/vue.common.js',
    'quasar': 'quasar-framework/dist/umd/quasar.mat.umd.js',
  },
  resolver: null,
  transformIgnorePatterns: [
    'node_modules/core-js',
    'node_modules/babel-runtime',
    'node_modules/vue',
  ],
  transform: {
    '^.+\\.js$': '<rootDir>/node_modules/babel-jest',
    '.*\\.(vue)$': '<rootDir>/node_modules/vue-jest',
  }
}

然后在项目的根目录中创建一个文件夹,名为 __unit__

__unit__ 文件夹中放置一个名为 MyUnitTest.test.js 的文件。现在 Jest 从这个文件夹中获取文件。

最后一步是运行测试,只需将其添加到 package.json

"unit": "yarn run jest --config jest.config.js"

轰! -- 现在您可以运行 yarn run unityarn run unit --watch 它应该可以工作。

这是 Quasar 组件和 Jest 测试的示例。

import { createLocalVue, shallowMount } from '@vue/test-utils'
import Vuex from 'vuex'
import Quasar, * as All from 'quasar'

import CookieConsent from '@components/common/CookieConsent.vue'


const localVue = createLocalVue()

localVue.use(Vuex)
localVue.use(Quasar, { components: All, directives: All, plugins: All })

describe('CookieConsent.vue', () => {
  const wrapper = shallowMount(CookieConsent, {
    localVue,
    mocks: {
      $t: () => {},
    },
  })

  test('CookieConsent.vue mock should exist', () => {
    expect(wrapper.exists()).toBe(true)
  })

})

希望你觉得这有用

关于unit-testing - 如何使用 Jest 对 quasar 应用程序进行单元测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52784267/

相关文章:

javascript - 语法错误 : Cannot use import statement outside a module: when running Jest-expo tests

reactjs - 导入文件时用 typescript 开 Jest 会引发错误

javascript - Jest 返回一个表未找到错误与 sqlite

vue.js - 如何通过 vuex 使用 v-if 隐藏段落?

javascript - 使用 Vue Router 在 Javascript 中将对象键设置为变量

javascript - VueJS 组件未加载

c# - 使用返回随机结果的函数进行单元测试

python - 模拟补丁不适用于 __init__.py 中的类

node.js - 'FIRESTORE 内部断言失败 : Unexpected state' when unit testing with Jest

html - 模拟 document.getElemetById ('.form' ).getContext ('2d' ) 使用 sinon