wechaty-puppet-official-account
Version:
Wechaty Puppet for WeChat Official Accounts
19 lines • 552 B
JavaScript
import 'dotenv/config.js';
import { test } from 'tstest';
import { getOaOptions } from '../tests/fixtures/oa-options.js';
import { PuppetOA } from './puppet-oa.js';
import * as ciInfo from 'ci-info';
class PuppetOATest extends PuppetOA {
}
test('tbw', async (t) => {
if (ciInfo.isPR) {
await t.skip('Skip for PR');
return;
}
const oa = new PuppetOATest({
...getOaOptions(),
});
t.ok(oa, 'should be ok');
});
//# sourceMappingURL=puppet-oa.spec.js.map