This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { List, Map } from 'immutable'; | |
import { expect } from 'chai'; | |
import { setEntries, next, vote, restart } from '../src/core'; | |
describe('application logic', () => { | |
describe('setEntries', () => { | |
it('adds the entries to the state', () => { | |
const state = Map(); | |
const entries = List.of('Jon Snow', 'Ramsay Snow'); |
NewerOlder