Skip to content
8 changes: 4 additions & 4 deletions spec/part1.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@



xdescribe('3. Sum Integers in Array', function() {
describe('3. Sum Integers in Array', function() {

it('should return a number', function() {
expect(typeof(arraySum([[1],[2,3],[[4]],5,6]))).to.eql('number');
Expand Down Expand Up @@ -402,7 +402,7 @@



xdescribe('11. Modulo', function() {
describe('11. Modulo', function() {

it('should return a number', function() {
expect(typeof(modulo(5,2))).to.equal('number');
Expand Down Expand Up @@ -476,7 +476,7 @@



xdescribe('13. Divide', function() {
describe('13. Divide', function() {

it('should return a number', function() {
expect(typeof(divide(5,2))).to.equal('number');
Expand Down Expand Up @@ -512,7 +512,7 @@



xdescribe('14. Greatest Common Divisor', function() {
describe('14. Greatest Common Divisor', function() {

it('should return a number', function() {
expect(typeof(gcd(4,36))).to.equal('number');
Expand Down
Loading