address-client
Version:
地址管理前台组件
20 lines (17 loc) • 504 B
JavaScript
import Vue from 'vue'
import init from 'test/unit/init'
import { TestUtil } from 'vue-client'
import NewAddressInfo from 'src/components/NewAddressInfo'
describe('NewAddressInfo: 小区信息', () => {
let vm = null
before(async function () {
init()
await Vue.$appdata.load()
await Vue.$login.login('hns', '1')
})
it('显示', async function() {
vm = await TestUtil.createAsyncTest(NewAddressInfo, {row: {}})
let ret = vm.meterbrands
debugger
})
})