feat(core): true ua (#10761)

* feat(core): true ua

* test: skip mercury parser temporary
This commit is contained in:
Tony
2022-09-11 19:13:38 +02:00
committed by GitHub
parent 16a25f5243
commit 878266c535
6 changed files with 53 additions and 14 deletions

View File

@@ -313,13 +313,13 @@ describe('wrong_path', () => {
});
describe('fulltext_mode', () => {
it(`fulltext`, async () => {
it.skip(`fulltext`, async () => {
const response = await request.get('/test/1?mode=fulltext');
expect(response.status).toBe(200);
const parsed = await parser.parseString(response.text);
expect(parsed.items[0].content).not.toBe(undefined);
});
}, 10000);
}, 10000);
});
describe('complicated_description', () => {
it(`complicated_description`, async () => {