@@ -17,11 +17,11 @@ var getFixtureFile = function (path) {
17
17
base : './test/fixtures/' ,
18
18
contents : fs . readFileSync ( './test/fixtures/' + path )
19
19
} ) ;
20
- }
20
+ } ;
21
21
22
22
describe ( 'gulp-pug-inheritance' , function ( done ) {
23
23
it ( 'pug with parents' , function ( done ) {
24
- var fixture = getFixtureFile ( 'fixture1.pug' )
24
+ var fixture = getFixtureFile ( 'fixture1.pug' ) ;
25
25
26
26
var fileNames = [
27
27
path . join ( 'test' , 'fixtures' , 'fixture1.pug' ) ,
@@ -49,7 +49,7 @@ describe('gulp-pug-inheritance', function(done) {
49
49
} ) ;
50
50
51
51
it ( 'pug without parents' , function ( done ) {
52
- var fixture = getFixtureFile ( 'fixture4.pug' )
52
+ var fixture = getFixtureFile ( 'fixture4.pug' ) ;
53
53
54
54
var files = [ ] ;
55
55
@@ -69,7 +69,7 @@ describe('gulp-pug-inheritance', function(done) {
69
69
} ) ;
70
70
71
71
it ( 'empty pug' , function ( done ) {
72
- var fixture = getFixtureFile ( 'fixture5.pug' )
72
+ var fixture = getFixtureFile ( 'fixture5.pug' ) ;
73
73
74
74
var files = [ ] ;
75
75
@@ -90,7 +90,7 @@ describe('gulp-pug-inheritance', function(done) {
90
90
91
91
describe ( 'custom basedir' , function ( done ) {
92
92
it ( 'wrong path' , function ( done ) {
93
- var fixture = getFixtureFile ( 'fixture1.pug' )
93
+ var fixture = getFixtureFile ( 'fixture1.pug' ) ;
94
94
95
95
var files = [ ] ;
96
96
@@ -110,7 +110,7 @@ describe('gulp-pug-inheritance', function(done) {
110
110
} ) ;
111
111
112
112
it ( 'valid path' , function ( done ) {
113
- var fixture = getFixtureFile ( 'fixture1.pug' )
113
+ var fixture = getFixtureFile ( 'fixture1.pug' ) ;
114
114
115
115
var files = [ ] ;
116
116
@@ -131,7 +131,7 @@ describe('gulp-pug-inheritance', function(done) {
131
131
} ) ;
132
132
133
133
it ( 'subfolder pug' , function ( done ) {
134
- var fixture = getFixtureFile ( 'subfolder/fixture5.pug' )
134
+ var fixture = getFixtureFile ( 'subfolder/fixture5.pug' ) ;
135
135
136
136
var files = [ ] ;
137
137
0 commit comments