Skip to content

Commit 92d2f54

Browse files
committed
lint test/test.js
1 parent a3862ea commit 92d2f54

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

test/test.js

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
11
require.config({
2-
baseUrl:'./',
3-
paths : {
4-
'lib' : '../lib',
5-
'chai' : './testDeps/chai'
6-
}
2+
baseUrl:'./',
3+
paths : {
4+
'lib' : '../lib',
5+
'chai' : './testDeps/chai'
6+
}
77
});
88

99
var allTests = [
10-
'tests/p5.SoundFile',
11-
'tests/p5.Amplitude',
12-
'tests/p5.Oscillator',
13-
'tests/p5.Distortion',
14-
'tests/p5.Effect',
15-
'tests/p5.Filter',
16-
'tests/p5.FFT',
17-
'tests/p5.Compressor',
18-
'tests/p5.EQ',
19-
'tests/p5.AudioIn',
20-
'tests/p5.AudioVoice',
21-
'tests/p5.MonoSynth',
22-
'tests/p5.PolySynth'
10+
'tests/p5.SoundFile',
11+
'tests/p5.Amplitude',
12+
'tests/p5.Oscillator',
13+
'tests/p5.Distortion',
14+
'tests/p5.Effect',
15+
'tests/p5.Filter',
16+
'tests/p5.FFT',
17+
'tests/p5.Compressor',
18+
'tests/p5.EQ',
19+
'tests/p5.AudioIn',
20+
'tests/p5.AudioVoice',
21+
'tests/p5.MonoSynth',
22+
'tests/p5.PolySynth',
23+
'tests/p5.SoundRecorder'
2324
];
2425

2526
p5.prototype.masterVolume(0);
2627

2728
require(allTests, function(){
28-
mocha.run();
29+
mocha.run();
2930
});

0 commit comments

Comments
 (0)