mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 11:19:14 +08:00
10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
import { it } from "vitest"
|
|
import { zaobao } from "#/sources/zaobao"
|
|
|
|
it.skip("res", {
|
|
timeout: 10000,
|
|
}, async () => {
|
|
const res = await zaobao()
|
|
console.log(res)
|
|
})
|