mirror of
https://github.com/openstf/stf
synced 2025-10-05 10:39:25 +02:00
Minimal start with a custom logger and device tracker.
This commit is contained in:
parent
971fcb8297
commit
f67eb6dd25
7 changed files with 126 additions and 0 deletions
12
test/util/logger.js
Normal file
12
test/util/logger.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
var chai = require('chai')
|
||||
var expect = chai.expect
|
||||
|
||||
var logger = require('../../lib/util/logger')
|
||||
|
||||
describe('Logger', function() {
|
||||
|
||||
it('should have a createLogger method', function() {
|
||||
expect(logger).itself.to.respondTo('createLogger')
|
||||
})
|
||||
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue