Test cleanup and fixes [m-n]
This commit is contained in:
@ -1,14 +1,12 @@
|
||||
const expect = require('expect');
|
||||
const nthElement = require('./nthElement.js');
|
||||
|
||||
|
||||
test('nthElement is a Function', () => {
|
||||
test('nthElement is a Function', () => {
|
||||
expect(nthElement).toBeInstanceOf(Function);
|
||||
});
|
||||
test('Returns the nth element of an array.', () => {
|
||||
expect(nthElement(['a', 'b', 'c'], 1)).toBe('b')
|
||||
test('Returns the nth element of an array.', () => {
|
||||
expect(nthElement(['a', 'b', 'c'], 1)).toBe('b');
|
||||
});
|
||||
test('Returns the nth element of an array.', () => {
|
||||
expect(nthElement(['a', 'b', 'c'], -3)).toBe('a')
|
||||
test('Returns the nth element of an array.', () => {
|
||||
expect(nthElement(['a', 'b', 'c'], -3)).toBe('a');
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user