test/functional/home.js   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 10
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 0
c 2
b 0
f 0
nc 1
dl 0
loc 10
rs 10
wmc 1
mnd 0
bc 1
fnc 1
bpm 1
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A module.exports.Grogan Burner Services Assert Title 0 8 1
1
2
module.exports = { // adapted from: https://git.io/vodU0
3
  'Grogan Burner Services Assert Title': function (browser) {
4
    browser
5
      .url('http://localhost:3000/')
6
      .waitForElementVisible('body')
7
      .assert.title('Grogan Burner Services')
8
      .saveScreenshot('guinea-pig-test.png')
9
      .end()
10
  }
11
}
12