Completed
Push — dev ( d30456...4fd03f )
by Fike
33s
created

test/suites/unit/logger/_common.spec.js   A

Complexity

Total Complexity 3
Complexity/F 1

Size

Lines of Code 11
Function Count 3

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
c 1
b 0
f 0
nc 1
dl 0
loc 11
rs 10
wmc 3
mnd 0
bc 3
fnc 3
bpm 1
cpm 1
noi 0
1
/* eslint-env mocha */
2
3
var Commons = require('../../../../lib/logger/_common')
4
var Fixtures = require('../../../support/fixture').Fixtures
5
var fixtures = new Fixtures('logger', '_common')
6
7
describe('Unit', function () {
8
  describe('/logger', function () {
9
    describe('/_common.js', function () {
10
      fixtures.apply(Commons)
11
    })
12
  })
13
})
14