Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Created December 30, 2015 13:10
Show Gist options
  • Save qetr1ck-op/0cc977fb500184b5c15e to your computer and use it in GitHub Desktop.
Save qetr1ck-op/0cc977fb500184b5c15e to your computer and use it in GitHub Desktop.
const testAddCounter = () => {
const listBefore = [];
const listAfter = [0];
deepFreeze(listBefore);
expect(
addCounter(listBefore)
).toEqual(listAfter);
};
const testRemoveCounter = () => {
const listBefore = [0, 10, 20];
const listAfter = [0, 20];
deepFreeze(listBefore);
expect (
removeCounter(listBefore, 1)
).toEqual(listAfter);
};
const testIncrementCounter = () => {
const listBefore = [0, 10, 20];
const listAfter = [0, 11, 20];
deepFreeze(listBefore);
expect(
incrementCounter(listBefore, 1)
).toEqual(listAfter);
};
testAddCounter();
testRemoveCounter();
testIncrementCounter();
console.log('All tests passed')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment