-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (29 loc) · 1.19 KB
/
index.html
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
35
36
37
38
39
40
41
42
43
<!DOCTYPE html >
<html>
<head>
<title>Exercicis</title>
<style>
</style>
</head>
<body>
<div id="container">
</div>
</body>
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
<script src="./dist/js/mix/web_test_utils.js"></script>
<!-- <script src="./dist/js/web_test_list.js"></script>-->
<!-- <script src="./dist/js/web_test.js"></script>-->
<!-- <script src="./dist/js/web_test_style_attribute_list.js"></script>-->
<!-- <script src="./dist/js/web_test_click.js"></script>-->
<!-- <script src="./dist/js/web_test_expect_function_called.js"></script>-->
<!-- <script src="./dist/js/web_test_function_exists.js"></script>-->
<!-- <script src="./dist/js/web_test_selector.js"></script>-->
<!-- <script src="./dist/js/web_test_selector_exists.js"></script>-->
<!-- <script src="./dist/js/web_test_style_attribute.js"></script>-->
<!-- <script src="./dist/js/web_test_type.js"></script>-->
<script>
const domContainer = document.querySelector('#container');
ReactDOM.render( React.createElement(WebTestList), domContainer);
</script>
</html>