12345678910111213141516171819202122232425262728293031323334353637 |
- import Vue from 'vue'
- import BaiduMap from '../components/index.js'
- import {expect} from 'chai'
- import {createApp} from './util/util.js'
- describe('Regist', () => {
- it('global regist', done => {
- Vue.use(BaiduMap, {ak: 'oW2UEhdth2tRbEE4FUpF9E5YVDCIPYih'})
- const app = createApp({})
- expect(app._BMap().ak).equal('oW2UEhdth2tRbEE4FUpF9E5YVDCIPYih')
- done()
- })
- })
|