Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit 135b3f9

Browse files
author
Markus Falk
committed
[TASK] fix tests to match single quotes refs #166
1 parent 71b180b commit 135b3f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test-addcomponent.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ describe('Kickstart:addcomponent', function () {
7171
});
7272

7373
it('is the new module wired to project-name.scss?', function () {
74-
assert.fileContent('components/foo.scss', /@import \"app\/foo\/foo\";/);
74+
assert.fileContent('components/foo.scss', /@import \'app\/foo\/foo\';/);
7575
});
7676

7777
it('is the new module wired to project-name.js?', function () {
@@ -129,7 +129,7 @@ describe('Kickstart:addcomponent', function () {
129129
});
130130

131131
it('is the new module wired to _project-name.scss?', function () {
132-
assert.fileContent('components/_foo.scss', /@import \"app\/foo\/foo\";/);
132+
assert.fileContent('components/_foo.scss', /@import \'app\/foo\/foo\';/);
133133
});
134134

135135
});
@@ -194,7 +194,7 @@ describe('Kickstart:addcomponent', function () {
194194
});
195195

196196
it('is the new module wired to project-name.scss?', function () {
197-
assert.fileContent('components/bar.scss', /@import \"app\/_deferred\/bar\/bar\";/);
197+
assert.fileContent('components/bar.scss', /@import \'app\/_deferred\/bar\/bar\';/);
198198
});
199199

200200
it('is the new module wired to project-name.js?', function () {

0 commit comments

Comments
 (0)