Skip to content

test(accumulate): add test suite for accumulate function #15159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions packages/events/__tests__/accumulate-test.internal.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @emails react-core
*/

'use strict';

let accumulate;

describe('accumulate', () => {
beforeEach(() => {
accumulate = require('events/accumulate').default;
});

it('throws if the second item is null', () => {
expect(function() {
accumulate([], null);
}).toThrowError(
'accumulate(...): Accumulated items must not be null or undefined.',
);
});

it('return second item if first item is null', () => {
const a = [];
expect(accumulate(null, a)).toBe(a);
});

it('return concatenation of items if first item is an array', () => {
const a = ['hello'];
const b = 'world';
expect(accumulate(a, b)).toEqual(['hello', 'world']);
});

it('return concatenation of items if second item is an array', () => {
const a = 'hello';
const b = ['world'];
expect(accumulate(a, b)).toEqual(['hello', 'world']);
});

it('return an array containing both items if neither item is an array', () => {
const a = 'hello';
const b = 'world';
expect(accumulate(a, b)).toEqual(['hello', 'world']);
});
});
2 changes: 1 addition & 1 deletion packages/events/accumulate.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function accumulate<T>(
): T | Array<T> {
invariant(
next != null,
'accumulate(...): Accumulated items must be not be null or undefined.',
'accumulate(...): Accumulated items must not be null or undefined.',
);

if (current == null) {
Expand Down