forked from daniellmb/angular-test-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathe2e.html
More file actions
22 lines (22 loc) · 730 Bytes
/
e2e.html
File metadata and controls
22 lines (22 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>End-to-end Test Runner</title>
<!-- e2e scenario test runner -->
<script src="../bower_components/angular-scenario/angular-scenario.js"></script>
<!-- scenarios to run -->
<script src="scenario.coffee" type="text/coffeescript"></script>
<!-- run CoffeeScript in the browser -->
<script src="coffee-script.js"></script>
<script>
setTimeout(function () {
// Run tests once CoffeeScript is compiled.
// Note: this is just to show it can be done this way.
// You really should pre-process your CoffeeScript.
angular.scenario.setUpAndRun();
}, 500);
</script>
</head>
<body></body>
</html>