Test cleanup and fixes [q-r]

This commit is contained in:
Angelos Chalaris
2018-06-18 18:13:18 +03:00
parent 072728dad2
commit 9c22d92c34
23 changed files with 147 additions and 202 deletions

View File

@ -1,23 +1,22 @@
const expect = require('expect');
const round = require('./round.js');
test('round is a Function', () => {
test('round is a Function', () => {
expect(round).toBeInstanceOf(Function);
});
test('round(1.005, 2) returns 1.01', () => {
expect(round(1.005, 2)).toBe(1.01)
test('round(1.005, 2) returns 1.01', () => {
expect(round(1.005, 2)).toBe(1.01);
});
test('round(123.3423345345345345344, 11) returns 123.34233453453', () => {
expect(round(123.3423345345345345344, 11)).toBe(123.34233453453)
test('round(123.3423345345345345344, 11) returns 123.34233453453', () => {
expect(round(123.3423345345345345344, 11)).toBe(123.34233453453);
});
test('round(3.342, 11) returns 3.342', () => {
expect(round(3.342, 11)).toBe(3.342)
test('round(3.342, 11) returns 3.342', () => {
expect(round(3.342, 11)).toBe(3.342);
});
test('round(1.005) returns 1', () => {
expect(round(1.005)).toBe(1)
test('round(1.005) returns 1', () => {
expect(round(1.005)).toBe(1);
});
test('round([1.005, 2]) returns NaN', () => {
test('round([1.005, 2]) returns NaN', () => {
expect(isNaN(round([1.005, 2]))).toBeTruthy();
});
test('round(string) returns NaN', () => {
@ -32,12 +31,9 @@ const round = require('./round.js');
test('round({a: 132}, 413) returns NaN', () => {
expect(isNaN(round({a: 132}, 413))).toBeTruthy();
});
let start = new Date().getTime();
round(123.3423345345345345344, 11);
let end = new Date().getTime();
test('round(123.3423345345345345344, 11) takes less than 2s to run', () => {
let start = new Date().getTime();
round(123.3423345345345345344, 11);
let end = new Date().getTime();
test('round(123.3423345345345345344, 11) takes less than 2s to run', () => {
expect((end - start) < 2000).toBeTruthy();
});