File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- import { launchApp , // ?? just needed while our logs are on
2
- createFeature } from 'feature-u' ;
1
+ import { createFeature } from 'feature-u' ;
3
2
import { logicAspect } from '..' ; // modules under test
4
3
5
4
// temporarly turn on logging (just for fun)
5
+ // ... must include launchApp on this
6
6
// launchApp.diag.logf.enable();
7
7
8
8
describe ( 'logicAspect() tests' , ( ) => {
@@ -37,7 +37,7 @@ describe('logicAspect() tests', () => {
37
37
const feature = createFeature ( {
38
38
name : 'feature1' ,
39
39
logic : "I'm NOT an array" ,
40
- } )
40
+ } ) ;
41
41
42
42
expect ( logicAspect . validateFeatureContent ( feature ) )
43
43
. toMatch ( / m u s t b e a n a r r a y / ) ;
@@ -48,7 +48,7 @@ describe('logicAspect() tests', () => {
48
48
const feature = createFeature ( {
49
49
name : 'feature1' ,
50
50
logic : [ 'mock' , 'logic' , 'modules' ] ,
51
- } )
51
+ } ) ;
52
52
53
53
expect ( logicAspect . validateFeatureContent ( feature ) )
54
54
. toBe ( null ) ;
You can’t perform that action at this time.
0 commit comments