Chore: Disable warning in tests

pull/8411/head
Laurent Cozic 2023-07-02 17:45:01 +01:00
parent 09c6c81992
commit bc35649dda
1 changed files with 4 additions and 4 deletions

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);