mirror of
https://github.com/shanmiteko/LotteryAutoScript.git
synced 2026-06-04 21:01:17 +08:00
Some checks failed
Build and push Docker images / docker (push) Has been cancelled
Mirror and run GitLab CI / build (push) Has been cancelled
Package Node.js project into an executable / node${{ matrix.nodev }}-${{ matrix.platform }}-x64 (18, linux) (push) Has been cancelled
Package Node.js project into an executable / node${{ matrix.nodev }}-${{ matrix.platform }}-x64 (18, macos) (push) Has been cancelled
Package Node.js project into an executable / node${{ matrix.nodev }}-${{ matrix.platform }}-x64 (18, win) (push) Has been cancelled
Package Node.js project into an executable / node18-${{ matrix.platform }}-arm64 (alpine) (push) Has been cancelled
Package Node.js project into an executable / node18-${{ matrix.platform }}-arm64 (linux) (push) Has been cancelled
Package Node.js project into an executable / node18-${{ matrix.platform }}-arm64 (linuxstatic) (push) Has been cancelled
14 lines
405 B
JavaScript
14 lines
405 B
JavaScript
const assert = require('assert');
|
|
const util = require('./util');
|
|
const d_storage = require('../lib/helper/d_storage');
|
|
|
|
(async () => {
|
|
await util.par_run([], [
|
|
// 0
|
|
async () => {
|
|
assert(await d_storage.searchDyid('1234567901234568'));
|
|
assert(!await d_storage.searchDyid('1234567901234569'));
|
|
},
|
|
]);
|
|
console.log('dyidSearch.test ... ok!');
|
|
})(); |