mirror of
https://github.com/shanmiteko/LotteryAutoScript.git
synced 2026-06-04 21:01:17 +08:00
8 lines
243 B
JavaScript
8 lines
243 B
JavaScript
const assert = require('assert');
|
|
const bili_client = require("../lib/net/bili");
|
|
|
|
(async () => {
|
|
assert(await bili_client.getMyinfo())
|
|
assert.equal((await bili_client.getTopRcmd()).length, 10)
|
|
console.log("api.test ... ok!");
|
|
})() |