elfrank/sample-nodejs-project

View on GitHub
specs/operations/subtract.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { expect } from 'chai';
import { subtract } from '../../src/index';

describe('#subtract', () => {
  it('returns the subtraction of two positive integers', () => {
    expect(subtract(1, 3)).to.equal(-2);
  });
});