Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jio-main
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
jio-main
Commits
571de20f
Commit
571de20f
authored
Aug 29, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
requirejs asynctests added
parent
0b89c735
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
test/asynctests.require.html
test/asynctests.require.html
+13
-0
test/asynctests.require.js
test/asynctests.require.js
+33
-0
No files found.
test/asynctests.require.html
0 → 100644
View file @
571de20f
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
/>
<title>
JIO Qunit/Sinon Unit Tests
</title>
<script
src=
"../lib/require/require.js"
></script>
<script
src=
"asynctests.require.js"
></script>
<link
rel=
"stylesheet"
href=
"../lib/qunit/qunit.css"
/>
</head>
<body>
<div
id=
"qunit"
></div>
</body>
</html>
test/asynctests.require.js
0 → 100644
View file @
571de20f
/*jslint indent: 2, maxlen: 80, nomen : true */
/*global require */
(
function
()
{
"
use strict
"
;
require
.
config
({
"
paths
"
:
{
"
sha256
"
:
"
../src/sha256.amd
"
,
"
jio
"
:
"
../jio
"
,
"
test_util
"
:
"
jio/util
"
,
"
fakestorage
"
:
"
jio/fakestorage
"
,
"
complex_queries
"
:
"
../complex_queries
"
,
"
localstorage
"
:
"
../src/jio.storage/localstorage
"
,
"
localstorage_tests
"
:
"
jio.storage/localstorage.asynctests
"
,
"
qunit
"
:
"
../lib/qunit/qunit
"
,
"
sinon
"
:
"
../lib/sinon/sinon
"
,
"
sinon_qunit
"
:
"
../lib/sinon/sinon-qunit
"
},
"
shim
"
:
{
"
sinon
"
:
[
"
qunit
"
],
"
sinon_qunit
"
:
[
"
sinon
"
]
}
});
require
([
"
sinon_qunit
"
,
"
localstorage_tests
"
]);
}());
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment