mirror of
https://github.com/openstf/stf
synced 2025-10-03 09:49:17 +02:00
14 lines
380 B
JavaScript
14 lines
380 B
JavaScript
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')
|
|
})
|
|
|
|
it('should have a setGlobalIdentifier method', function() {
|
|
expect(logger).itself.to.respondTo('setGlobalIdentifier')
|
|
})
|
|
})
|