Files
miniprogram-picker/test/wx.test.js

19 lines
413 B
JavaScript
Raw Normal View History

2018-12-12 14:52:37 +08:00
const _ = require('./utils')
test('wx.getSystemInfo', async () => {
wx.getSystemInfo({
success(res) {
expect(res.errMsg).toBe('getSystemInfo:ok')
},
complete(res) {
expect(res.errMsg).toBe('getSystemInfo:ok')
},
})
})
test('wx.getSystemInfoSync', async () => {
const info = wx.getSystemInfoSync()
expect(info.SDKVersion).toBe('2.4.1')
expect(info.version).toBe('6.6.3')
})