1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-30 10:36:35 +02:00

Chore: Disable warning in tests

This commit is contained in:
Laurent Cozic 2023-07-02 17:45:01 +01:00
parent 09c6c81992
commit bc35649dda

View File

@ -48,10 +48,10 @@ const createEditor = async (
});
if (sawExpectedTagCount < expectedSyntaxTreeTags.length) {
const missingTags = expectedSyntaxTreeTags.filter(tagName => {
return !seenTags.has(tagName);
});
console.warn(`Didn't find all expected tags. Missing ${missingTags}. Retrying...`);
// const missingTags = expectedSyntaxTreeTags.filter(tagName => {
// return !seenTags.has(tagName);
// });
// console.warn(`Didn't find all expected tags. Missing ${missingTags}. Retrying...`);
await new Promise(resolve => {
setTimeout(resolve, 500);