Test cleanup and fixes [i-l]
This commit is contained in:
@ -1,17 +1,15 @@
|
||||
const expect = require('expect');
|
||||
const join = require('./join.js');
|
||||
|
||||
|
||||
test('join is a Function', () => {
|
||||
test('join is a Function', () => {
|
||||
expect(join).toBeInstanceOf(Function);
|
||||
});
|
||||
test('Joins all elements of an array into a string and returns this string', () => {
|
||||
expect(join(['pen', 'pineapple', 'apple', 'pen'], ',', '&'), "pen,pineapple).toEqual(apple&pen")
|
||||
test('Joins all elements of an array into a string and returns this string', () => {
|
||||
expect(join(['pen', 'pineapple', 'apple', 'pen'], ',', '&')).toEqual('pen,pineapple,apple&pen');
|
||||
});
|
||||
test('Joins all elements of an array into a string and returns this string', () => {
|
||||
expect(join(['pen', 'pineapple', 'apple', 'pen'], ','), "pen,pineapple,apple).toEqual(pen")
|
||||
test('Joins all elements of an array into a string and returns this string', () => {
|
||||
expect(join(['pen', 'pineapple', 'apple', 'pen'], ',')).toEqual('pen,pineapple,apple,pen');
|
||||
});
|
||||
test('Joins all elements of an array into a string and returns this string', () => {
|
||||
expect(join(['pen', 'pineapple', 'apple', 'pen']), "pen,pineapple,apple).toEqual(pen")
|
||||
});
|
||||
|
||||
test('Joins all elements of an array into a string and returns this string', () => {
|
||||
expect(join(['pen', 'pineapple', 'apple', 'pen'])).toEqual('pen,pineapple,apple,pen');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user