UNPKG
mimik
Version:
latest (0.13.0)
0.13.0
0.12.5
0.12.4
0.12.3
0.12.2
0.11.1
0.10.4
0.10.2
0.10.1
0.9.0
0.8.7
0.8.6
0.8.4
0.8.1
0.6.2
0.6.1
0.6.0
0.5.0
0.4.8
0.4.7
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0
0.1.4
0.1.3
0.1.2
Write end-to-end automation tests in natural language
github.com/simoami/mimik
simoami/mimik
mimik
/
tests
/
functional
/
todomvc
/
public
/
js
/
app.js
13 lines
(10 loc)
•
197 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/*global $ */
/*jshint unused:false */
var
app = app || {};
var
ENTER_KEY
=
13
;
var
ESC_KEY
=
27
; $(
function
(
) {
'use strict'
;
// kick things off by creating the `App`
new
app.
AppView
(); });