Skip to content
This repository was archived by the owner on Mar 30, 2021. It is now read-only.

Commit 7ac7a45

Browse files
committed
more linting
1 parent 62f185e commit 7ac7a45

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

__tests__/app.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
'use strict';
2-
const path = require('path');
3-
const assert = require('yeoman-assert');
4-
const helpers = require('yeoman-test');
1+
"use strict";
2+
const path = require("path");
3+
const assert = require("yeoman-assert");
4+
const helpers = require("yeoman-test");
55

6-
describe('generator-biojs-webcomponents:app', () => {
6+
describe("generator-biojs-webcomponents:app", () => {
77
beforeAll(() => {
88
return helpers
9-
.run(path.join(__dirname, '../generators/app'))
9+
.run(path.join(__dirname, "../generators/app"))
1010
.withPrompts({ someAnswer: true });
1111
});
1212

13-
it('creates files', () => {
14-
assert.file(['dummyfile.txt']);
13+
it("creates files", () => {
14+
assert.file(["dummyfile.txt"]);
1515
});
1616
});

0 commit comments

Comments
 (0)