Files
30-seconds-of-code/test/join/join.test.js
Angelos Chalaris 4f1e8b48b6 Test files linted
2018-08-03 10:39:26 +03:00

16 lines
699 B
JavaScript

const expect = require('expect');
const join = require('./join.js');
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'], ',', '&')).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'], ',')).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'])).toEqual('pen,pineapple,apple,pen');
});