Skip to content

Commit 2d61b70

Browse files
committed
Improve test names
1 parent e477f36 commit 2d61b70

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/error-reporting/test/unit/testLogger.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ describe('logger', function() {
6868
text = undefined;
6969
console.log = oldLog;
7070
});
71-
it('Should be able to WARN by default', function() {
71+
it('Should print WARN logs by default', function() {
7272
var logger = createLogger();
7373
logger.warn('test warning message');
7474
assert.strictEqual(text,
7575
'WARN:@google/cloud-errors: test warning message');
7676
});
77-
it('Should be able to ERROR by default', function() {
77+
it('Should print ERROR logs by default', function() {
7878
var logger = createLogger();
7979
logger.error('test error message');
8080
assert.strictEqual(text,

0 commit comments

Comments
 (0)