forked from PlayFab/JavaScriptSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.45 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.45 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PlayFab JavaScript Unit Tests</title>
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.19.0.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script><!-- HTTP vs HTTPS here should match where this file is hosted (This file is not strictly meant to be hosted, but rather run locally) -->
<script src="http://code.jquery.com/qunit/qunit-2.0.1.js"></script>
<script src="src/PlayFab/PlayFabAdminApi.js"></script>
<script src="src/PlayFab/PlayFabClientApi.js"></script>
<script src="src/PlayFab/PlayFabMatchmakerApi.js"></script>
<script src="src/PlayFab/PlayFabServerApi.js"></script>
<script src="src/PlayFab/PlayFabAuthenticationApi.js"></script>
<script src="src/PlayFab/PlayFabCloudScriptApi.js"></script>
<script src="src/PlayFab/PlayFabDataApi.js"></script>
<script src="src/PlayFab/PlayFabEventsApi.js"></script>
<script src="src/PlayFab/PlayFabExperimentationApi.js"></script>
<script src="src/PlayFab/PlayFabInsightsApi.js"></script>
<script src="src/PlayFab/PlayFabGroupsApi.js"></script>
<script src="src/PlayFab/PlayFabLocalizationApi.js"></script>
<script src="src/PlayFab/PlayFabMultiplayerApi.js"></script>
<script src="src/PlayFab/PlayFabProfilesApi.js"></script>
<script src="PlayFabApiTest.js"></script>
</body>
</html>