Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/lookup.json
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,9 @@
},
"undici": {
"prefix": "v",
"maintainers": ["mcollina", "ronag"]
"envVar": { "CITGM": true },
"maintainers": ["mcollina", "ronag"],
"comment": "skip a few tests that are too dependent on the network"
},
"uuid": {
"prefix": "v",
Expand Down
12 changes: 6 additions & 6 deletions test/reporter/test-reporter-junit.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ test('reporter.junit(): failing', (t) => {
}

junitReporter(logger, failingInput);
t.equal(output, failingExpected),
'we should get the expected output when a' + ' module fails';
(t.equal(output, failingExpected),
'we should get the expected output when a' + ' module fails');
t.end();
});

Expand All @@ -138,8 +138,8 @@ test('reporter.junit(): write to disk', (t) => {
t.plan(1);
junitReporter(outputFile, passingInput);
const expected = readFileSync(outputFile, 'utf8');
t.equal(expected, passingExpected),
'the file on disk should match the' + ' expected output';
(t.equal(expected, passingExpected),
'the file on disk should match the' + ' expected output');
t.end();
});

Expand All @@ -149,8 +149,8 @@ test('reporter.junit(): append to disk', (t) => {
writeFileSync(outputFileAppend, appendStartFile);
junitReporter(outputFileAppend, passingInput, true);
const expected = readFileSync(outputFileAppend, 'utf-8');
t.equal(expected, passingExpectedAppend),
'the file on disk should match the' + ' expected output';
(t.equal(expected, passingExpectedAppend),
'the file on disk should match the' + ' expected output');
t.end();
});

Expand Down
20 changes: 10 additions & 10 deletions test/reporter/test-reporter-tap.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ test('reporter.tap(): failing', (t) => {
}

tapReporter(logger, failingInput);
t.equal(output, failingExpected),
'we should get the expected output when a' + ' module fails';
(t.equal(output, failingExpected),
'we should get the expected output when a' + ' module fails');
t.end();
});

Expand All @@ -96,8 +96,8 @@ test('reporter.tap(): parser', (t) => {
// `results` contains JS classes that are not considered same as the
// plain objects loaded from the JSON file.
const plainResults = JSON.parse(JSON.stringify(results));
t.same(plainResults, tapParserExpected),
'the tap parser should correctly' + ' parse the tap file';
(t.same(plainResults, tapParserExpected),
'the tap parser should correctly' + ' parse the tap file');
t.end();
});
str(output).pipe(p);
Expand All @@ -107,8 +107,8 @@ test('reporter.tap(): write to disk', (t) => {
t.plan(1);
tapReporter(outputFile, passingInput);
const expected = readFileSync(outputFile, 'utf8');
t.equal(expected, passingExpected),
'the file on disk should match the' + ' expected output';
(t.equal(expected, passingExpected),
'the file on disk should match the' + ' expected output');
t.end();
});

Expand All @@ -118,17 +118,17 @@ test('reporter.tap(): append to disk', (t) => {
writeFileSync(outputFileAppend, appendStartFile);
tapReporter(outputFileAppend, passingInput, true);
const expected = readFileSync(outputFileAppend, 'utf8');
t.equal(expected, passingExpectedAppend),
'the file on disk should match the' + ' expected output';
(t.equal(expected, passingExpectedAppend),
'the file on disk should match the' + ' expected output');
t.end();
});

test('reporter.tap(): append to disk when file does not exist', (t) => {
t.plan(1);
tapReporter(outputFileAppendBlank, passingInput, true);
const expected = readFileSync(outputFileAppendBlank, 'utf8');
t.equal(expected, passingExpected),
'the file on disk should match the' + ' expected output';
(t.equal(expected, passingExpected),
'the file on disk should match the' + ' expected output');
t.end();
});

Expand Down