Skip to content

Commit abc7659

Browse files
committed
Add missing simicolions
1 parent cfc2d85 commit abc7659

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/main.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ var getFixtureFile = function (path) {
1717
base: './test/fixtures/',
1818
contents: fs.readFileSync('./test/fixtures/' + path)
1919
});
20-
}
20+
};
2121

2222
describe('gulp-pug-inheritance', function(done) {
2323
it('pug with parents', function(done) {
24-
var fixture = getFixtureFile('fixture1.pug')
24+
var fixture = getFixtureFile('fixture1.pug');
2525

2626
var fileNames = [
2727
path.join('test', 'fixtures', 'fixture1.pug'),
@@ -49,7 +49,7 @@ describe('gulp-pug-inheritance', function(done) {
4949
});
5050

5151
it('pug without parents', function(done) {
52-
var fixture = getFixtureFile('fixture4.pug')
52+
var fixture = getFixtureFile('fixture4.pug');
5353

5454
var files = [];
5555

@@ -69,7 +69,7 @@ describe('gulp-pug-inheritance', function(done) {
6969
});
7070

7171
it('empty pug', function(done) {
72-
var fixture = getFixtureFile('fixture5.pug')
72+
var fixture = getFixtureFile('fixture5.pug');
7373

7474
var files = [];
7575

@@ -90,7 +90,7 @@ describe('gulp-pug-inheritance', function(done) {
9090

9191
describe('custom basedir', function(done) {
9292
it('wrong path', function(done) {
93-
var fixture = getFixtureFile('fixture1.pug')
93+
var fixture = getFixtureFile('fixture1.pug');
9494

9595
var files = [];
9696

@@ -110,7 +110,7 @@ describe('gulp-pug-inheritance', function(done) {
110110
});
111111

112112
it('valid path', function(done) {
113-
var fixture = getFixtureFile('fixture1.pug')
113+
var fixture = getFixtureFile('fixture1.pug');
114114

115115
var files = [];
116116

@@ -131,7 +131,7 @@ describe('gulp-pug-inheritance', function(done) {
131131
});
132132

133133
it('subfolder pug', function(done) {
134-
var fixture = getFixtureFile('subfolder/fixture5.pug')
134+
var fixture = getFixtureFile('subfolder/fixture5.pug');
135135

136136
var files = [];
137137

0 commit comments

Comments
 (0)