Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-ippolito committed Oct 18, 2023
1 parent 97c71f6 commit 52f8f65
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/ci/ci_mark_flaky.js
Expand Up @@ -45,7 +45,7 @@ export function getFlakyTests(aggregation) {
function matchSystem(rawSystem) {
let system;
switch (true) {
case rawSystem.includes('container'): // if container container set is as docker
case rawSystem.includes('container'):
system = 'docker';
break;
case rawSystem.includes('win'):
Expand Down Expand Up @@ -145,7 +145,6 @@ function generateSkipFileLine(file) {

function appendTestsWithNewHeader(tmpFile, groupedByHeaders) {
const text = [];
// add new line at beginning to space

for (const [header, failedTests] of Object.entries(groupedByHeaders)) {
// skip if there isnt at least one failedTest with written false or no failedTests
Expand Down

0 comments on commit 52f8f65

Please sign in to comment.