Files
omnivore/packages/content-handler/test/apple-news-handler.test.ts
2022-09-30 12:51:23 +08:00

11 lines
325 B
TypeScript

import { AppleNewsHandler } from '../src/websites/apple-news-handler'
describe('open a simple web page', () => {
it('should return a response', async () => {
const response = await new AppleNewsHandler().preHandle(
'https://apple.news/AxjzaZaPvSn23b67LhXI5EQ'
)
console.log('response', response)
})
})