lint: Fix the "Expected a default case" warning

This fixes the "Expected a default case" warning
This commit is contained in:
regexowl 2023-08-23 10:49:55 +02:00 committed by Klara Simickova
parent b3767e0503
commit 77ff00d107
3 changed files with 5 additions and 0 deletions

View file

@ -314,6 +314,7 @@ describe('Clones table', () => {
case 2:
toTest.toHaveTextContent('');
break;
// no default
}
// region cell
@ -328,6 +329,7 @@ describe('Clones table', () => {
case 2:
toTest.toHaveTextContent('Image build failed');
break;
// no default
}
}
});