forked from vuejs/vue-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoffee.spec.js
30 lines (25 loc) · 927 Bytes
/
coffee.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
import { shallowMount, mount } from '@vue/test-utils'
import Coffee from './resources/Coffee.vue'
import CoffeeScript from './resources/CoffeeScript.vue'
import CoffeeES6 from './resources/CoffeeES6.vue'
import CoffeeScriptES6 from './resources/CoffeeScriptES6.vue'
*/
describe('Test CoffeeScript - coffee.spec.js', () => {
test('processes .vue file with lang set to coffee', () => {
// shallowMount(Coffee)
})
test('processes .vue file with lang set to coffeescript', () => {
// shallowMount(CoffeeScript)
})
test('processes .vue file with lang set to coffee (ES6)', () => {
// shallowMount(CoffeeES6)
})
test('processes .vue file with lang set to coffeescript (ES6)', () => {
// shallowMount(CoffeeScriptES6)
})
test('processes .vue file with lang set to coffeescript (ES6)', () => {
// const wrapper = mount(CoffeeScriptES6)
// expect(typeof wrapper).toBe('object')
})
})