TypeError: Object prototype may only be an Object or null: undefined
I got some error in my project.
I'm using vuejs, typescript and jest.
It's just simple code and I tried to unit test with jest, but It have some error. Here is my test code.
///<reference path="../../../../node_modules/@types/jest/index.d.ts"/>
// https://vue-test-utils.vuejs.org/kr/s
import { mount } from "vue-test-utils";
import HelloWorld from './HelloWorld.vue';
describe('[HelloWorld]', function () {
let cmp: any;
beforeEach(() => {
cmp = mount(HelloWorld);
});
it("Check vue instance", () => {
expect(cmp.isVueInstance()).toBeTruthy();
});
it("message is Hello", () => {
expect(cmp.vm.msg).toEqual('Hello!!');
});
});
and Here is vue file
<template>
<div class="hello">
<h1>{{ msg }}</h1>
<img src="/assets/logo.png">
<button @click="clickHandler">
button
</button>
</div>
</template>
<script lang="ts">
import Vue from "vue";
import Component from "vue-class-component";
interface HelloWorldInterface {
msg: string;
clickHandler(): void;
}
@Component({})
export default class HelloWorld extends Vue implements HelloWorldInterface {
msg = "Hello!!";
clickHandler() {
window.alert(this.msg);
}
}
</script>
Here is error logs with picture.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…