1
1
var should = require ( 'should' ) ;
2
2
var vm = require ( 'vm' ) ;
3
3
var fs = require ( 'fs' ) ;
4
+ var filename = __filename . replace ( / \. t e s t \. j s $ / , '.js' ) ;
5
+ vm . runInThisContext ( fs . readFileSync ( filename ) , filename ) ;
4
6
5
- // if this test is being run on a server it should be ONLY to test the
6
- // provided solutions
7
- if ( typeof window === 'undefined' ) {
8
- // looks for a file with the same name as this one but with
9
- // `.test.js` replaced with `.js`
10
- var filename = __filename . replace ( / \. t e s t \. j s $ / , '.js' ) ;
11
- vm . runInThisContext ( fs . readFileSync ( filename ) , filename ) ;
12
- }
13
7
14
8
describe ( 'createAnagrams' , function ( ) {
15
9
it ( 'should exist' , function ( ) {
@@ -22,6 +16,7 @@ describe('createAnagrams', function() {
22
16
23
17
it ( 'should return an array' , function ( ) {
24
18
var result = createAnagrams ( 'hello' ) ;
19
+ console . log ( 'result' , result ) ;
25
20
should . exist ( result ) ;
26
21
result . should . be . an . instanceof ( Array ) ;
27
22
} ) ;
@@ -79,8 +74,6 @@ describe('createAnagrams', function() {
79
74
} ) ;
80
75
81
76
it ( 'should return all __unique__ anagrams for \'apps\'' , function ( ) {
82
- // if you've gotten this far, you're doing awesome. this last test
83
- // is to check if you're returning an anagram array without duplicates
84
77
var expected = [ 'apps' , 'apsp' , 'aspp' , 'paps' , 'pasp' , 'ppas' , 'ppsa'
85
78
, 'psap' , 'pspa' , 'sapp' , 'spap' , 'sppa' ] ;
86
79
var match = true ;
@@ -89,10 +82,6 @@ describe('createAnagrams', function() {
89
82
} ) ;
90
83
91
84
it ( 'should not use underscore\'s `uniq`' , function ( ) {
92
- // this just checks your code for any usage of `_.uniq`
93
- // NOTE: this test _might_ still fail even if you technically don't use
94
- // `_.uniq` (ie., if you hae commented out code that still references
95
- // `_.uniq` in your solution.)
96
85
var usesUniq = createAnagrams . toString ( ) . match ( / \s * _ \. u n i q / ) === null ;
97
86
usesUniq . should . be . true ;
98
87
} )
0 commit comments