Skip to content

Commit

Permalink
tests: fix mocha suite marker locations
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed Jul 10, 2019
1 parent dc367f3 commit 7980b82
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions test/3.x/async_helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ var fs = require('fs');

var app = null

suite('express 3.x async helpers')

before(function () {
var express = require('express')
var hbs = require('../../').create()
Expand Down Expand Up @@ -55,8 +57,6 @@ before(function () {
})
})

suite('express 3.x async helpers')

test('index', function (done) {
request(app)
.get('/')
Expand Down
4 changes: 2 additions & 2 deletions test/3.x/no_layout_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ var root = process.cwd();

var app = null

suite('express 3.x no layout')

before(function () {
var express = require('express')
var hbs = require('../../')
Expand Down Expand Up @@ -59,8 +61,6 @@ before(function () {
})
})

suite('express 3.x no layout')

test('index', function(done) {
request(app)
.get('/')
Expand Down
4 changes: 2 additions & 2 deletions test/3.x/view_engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ var fs = require('fs');

var app = null

suite('express 3.x view engine')

before(function () {
var express = require('express')
var hbs = require('../../')
Expand Down Expand Up @@ -40,8 +42,6 @@ before(function () {
})
})

suite('express 3.x view engine')

test('index', function(done) {
request(app)
.get('/')
Expand Down
4 changes: 2 additions & 2 deletions test/4.x/async_helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ var fs = require('fs');

var app = null

suite('express 4.x async helpers')

before(function () {
var express = require('express')
var hbs = require('../../').create()
Expand Down Expand Up @@ -68,8 +70,6 @@ before(function () {
})
})

suite('express 4.x async helpers')

test('index', function (done) {
request(app)
.get('/')
Expand Down
4 changes: 2 additions & 2 deletions test/4.x/no_layout_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ var path = require('path');

var app = null

suite('express 4.x no layout')

before(function () {
var express = require('express')
var hbs = require('../../')
Expand Down Expand Up @@ -62,8 +64,6 @@ before(function () {
})
})

suite('express 4.x no layout')

test('index', function(done) {
request(app)
.get('/')
Expand Down
4 changes: 2 additions & 2 deletions test/4.x/view_engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ var fs = require('fs');

var app = null

suite('express 4.x view engine')

before(function () {
var express = require('express')
var hbs = require('../../')
Expand Down Expand Up @@ -40,8 +42,6 @@ before(function () {
})
})

suite('express 4.x view engine')

test('index', function(done) {
request(app)
.get('/')
Expand Down

0 comments on commit 7980b82

Please sign in to comment.