electron.spec.ts 271 字节
Newer Older
1 2 3 4 5 6 7
/**
 * Wechaty - Wechat for Bot. Connecting ChatBots
 *
 * Licenst: ISC
 * https://github.com/wechaty/wechaty
 *
 */
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
8 9 10 11 12
import { test } from 'ava'

test('Electron smoke testing', async t => {
  t.true(true, 'test')
})
13

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
14
test.skip('Electron open wx', t => {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
15
  t.pass('ok')
16
})