Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Unit Testing Improving Our Tests Catching an Error

Alejandro Molina
Alejandro Molina
3,997 Points

Stuck on code challenge

I am stuck on this code challenge and am sure I am doing something wrong. Can someone guide me on what I should be doing correctly?

Here is the code so far:

subtraction_spec.js
var expect = require('chai').expect

describe('subtraction', function () {
  var subtraction = require('../WHEREVER')  
  it('only works with numbers', function () {
    var number1;
    var number2;
    var handler = function () {typeof number1 !== 'number' || typeof number2 !== 'number' };
    expect(handler).to.throw(Error);
    expect(handler).to.throw('subtraction only works with numbers!');
  })
})
subtraction.js
function subtraction (number1, number2) {
  if (typeof number1 !== 'number' || typeof number2 !== 'number') {
    throw Error('subtraction only works with numbers!')
  }
  return number1 - number2
}

1 Answer

Steven Parker
Steven Parker
229,644 Points

It looks like you were duplicating the subtract function a bit in your test function handler. All you really need to do is to call the subtract function there, and be sure to give it at least one invalid argument.

It might look something like this:

    var handler = function () { subtraction(21, 'junk') };