Skip to content

Commit

Permalink
fixing lint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinAst committed Mar 1, 2018
1 parent 55de35a commit 6356212
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/spec/logicAspect.spec.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {launchApp, // ?? just needed while our logs are on
createFeature} from 'feature-u';
import {createFeature} from 'feature-u';
import {logicAspect} from '..'; // modules under test

// temporarly turn on logging (just for fun)
// ... must include launchApp on this
// launchApp.diag.logf.enable();

describe('logicAspect() tests', () => {
Expand Down Expand Up @@ -37,7 +37,7 @@ describe('logicAspect() tests', () => {
const feature = createFeature({
name: 'feature1',
logic: "I'm NOT an array",
})
});

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

expect(logicAspect.validateFeatureContent(feature))
.toBe(null);
Expand Down

0 comments on commit 6356212

Please sign in to comment.