forked from bahmutov/cypress-hyperapp-unit-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo-app.js
34 lines (30 loc) · 769 Bytes
/
todo-app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { h, app } from 'hyperapp'
import { TodoList } from '../components/todo-list'
import { toggle } from '../actions'
// const { h, app } = window.hyperapp
// notice how much this application looks like TodoList "unit" test
// in cypress/integration/todo-list-spec.js
console.log('starting todo app')
const state = {
todos: [
{
id: 1,
title: 'Write HyperApp',
completed: false
},
{
id: 2,
title: 'Test it using Cypress',
completed: false
}
]
}
const actions = { toggle }
const view = (state, actions) =>
// renders TodoList component, passing
// current state and actions
h(TodoList, {
todos: state.todos,
toggle: actions.toggle
})
app(state, actions, view, document.getElementById('app'))