Skip to content

Commit 6356212

Browse files
committed
fixing lint problems
1 parent 55de35a commit 6356212

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/spec/logicAspect.spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import {launchApp, // ?? just needed while our logs are on
2-
createFeature} from 'feature-u';
1+
import {createFeature} from 'feature-u';
32
import {logicAspect} from '..'; // modules under test
43

54
// temporarly turn on logging (just for fun)
5+
// ... must include launchApp on this
66
// launchApp.diag.logf.enable();
77

88
describe('logicAspect() tests', () => {
@@ -37,7 +37,7 @@ describe('logicAspect() tests', () => {
3737
const feature = createFeature({
3838
name: 'feature1',
3939
logic: "I'm NOT an array",
40-
})
40+
});
4141

4242
expect(logicAspect.validateFeatureContent(feature))
4343
.toMatch(/must be an array/);
@@ -48,7 +48,7 @@ describe('logicAspect() tests', () => {
4848
const feature = createFeature({
4949
name: 'feature1',
5050
logic: ['mock', 'logic', 'modules'],
51-
})
51+
});
5252

5353
expect(logicAspect.validateFeatureContent(feature))
5454
.toBe(null);

0 commit comments

Comments
 (0)