test: improve test coverage; properly test core client APIs (#6905)

* test: improve test coverage

* fix
This commit is contained in:
Joshua Chen 2022-03-12 23:15:45 +08:00 committed by GitHub
parent 76cb012209
commit d85cee576d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 1400 additions and 753 deletions

View file

@ -13,3 +13,5 @@ Lorem ipsum
Some content here
## I ♥ unicode.
export const c = 1;

View file

@ -114,6 +114,8 @@ Lorem ipsum
Some content here
## I ♥ unicode.
export const c = 1;
"
`;
@ -241,5 +243,7 @@ Lorem ipsum
Some content here
## I ♥ unicode.
export const c = 1;
"
`;

View file

@ -31,7 +31,6 @@ export function toValue(node: PhrasingContent | Heading): string {
case 'link':
return stringifyContent(node);
default:
return toString(node);
}
return toString(node);
}