Карма и Жасмин vuejs2 Неожиданный идентификатор - PullRequest
0 голосов
/ 03 октября 2018

У меня есть следующий тест spec.js

'use strict';
 import ContactForm from '../../../js/components/Contact/ContactForm.vue' 
describe('Contact Form', () => {
  it('Should have data property', () => {
    expect(typeof ContactForm.data).toBe('function')
})
});

Но сейчас я получаю сообщение об ошибке

 {
"message": "An error was thrown in afterAll\nUncaught SyntaxError: Unexpected identifier",
"str": "An error was thrown in afterAll\nUncaught SyntaxError: Unexpected identifier"
}

Что может быть не так?

...