Update logging statement for commonjs artifact testing (#868)

This commit is contained in:
Richie Bendall 2020-06-11 00:30:07 +12:00 committed by GitHub
parent 8f406b789a
commit e945b6b846
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,5 +37,5 @@ fetch(
.then(res => res.text())
.then(text => assert.strictEqual(text, 'Hello World!'))
.then(() => {
console.info('✅ CommonJS build artefact fitness testes successfully');
console.log('CommonJS build artifact fitness tests successfully');
});