mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 18:17:31 +08:00
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
import Vue from 'vue'
|
|
|
|
describe('Router node', () => {
|
|
it('Sets globals correctly', () => {
|
|
window.Vue = undefined
|
|
global.Vue = Vue
|
|
require('../src/router.js')
|
|
})
|
|
})
|