Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio_mebibou
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
Alexandra Rogova
jio_mebibou
Commits
cd6c559d
Commit
cd6c559d
authored
Aug 29, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asynctests moved to tests.html
parent
52853fed
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
66 deletions
+11
-66
test/asynctests.html
test/asynctests.html
+0
-18
test/asynctests.require.html
test/asynctests.require.html
+0
-13
test/asynctests.require.js
test/asynctests.require.js
+0
-33
test/jio.storage/localstorage.tests.js
test/jio.storage/localstorage.tests.js
+0
-0
test/tests.html
test/tests.html
+5
-1
test/tests.require.js
test/tests.require.js
+6
-1
No files found.
test/asynctests.html
deleted
100644 → 0
View file @
52853fed
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
/>
<link
rel=
"stylesheet"
href=
"../lib/qunit/qunit.css"
/>
<title>
JIO Qunit Unit Tests
</title>
</head>
<body>
<div
id=
"qunit"
></div>
<script
src=
"../lib/qunit/qunit.js"
></script>
<script
src=
"../src/sha256.amd.js"
></script>
<script
src=
"../jio.js"
></script>
<script
src=
"../complex_queries.js"
></script>
<script
src=
"jio/util.js"
></script>
<script
src=
"../src/jio.storage/localstorage.js"
></script>
<script
src=
"jio.storage/localstorage.asynctests.js"
></script>
</body>
</html>
test/asynctests.require.html
deleted
100644 → 0
View file @
52853fed
<!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
deleted
100644 → 0
View file @
52853fed
/*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
"
]);
}());
test/jio.storage/localstorage.
async
tests.js
→
test/jio.storage/localstorage.tests.js
View file @
cd6c559d
File moved
test/tests.html
View file @
cd6c559d
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<head>
<head>
<meta
charset=
"utf-8"
/>
<meta
charset=
"utf-8"
/>
<link
rel=
"stylesheet"
href=
"../lib/qunit/qunit.css"
/>
<link
rel=
"stylesheet"
href=
"../lib/qunit/qunit.css"
/>
<title>
JIO Qunit/Sinon Unit Tests
</title>
<title>
JIO
and Storage
Qunit/Sinon Unit Tests
</title>
</head>
</head>
<body>
<body>
<div
id=
"qunit"
></div>
<div
id=
"qunit"
></div>
...
@@ -15,5 +15,9 @@
...
@@ -15,5 +15,9 @@
<script
src=
"jio/util.js"
></script>
<script
src=
"jio/util.js"
></script>
<script
src=
"jio/fakestorage.js"
></script>
<script
src=
"jio/fakestorage.js"
></script>
<script
src=
"jio/tests.js"
></script>
<script
src=
"jio/tests.js"
></script>
<script
src=
"../complex_queries.js"
></script>
<script
src=
"../src/jio.storage/localstorage.js"
></script>
<script
src=
"jio.storage/localstorage.tests.js"
></script>
</body>
</body>
</html>
</html>
test/tests.require.js
View file @
cd6c559d
...
@@ -13,6 +13,10 @@
...
@@ -13,6 +13,10 @@
"
test_util
"
:
"
jio/util
"
,
"
test_util
"
:
"
jio/util
"
,
"
fakestorage
"
:
"
jio/fakestorage
"
,
"
fakestorage
"
:
"
jio/fakestorage
"
,
"
complex_queries
"
:
"
../complex_queries
"
,
"
localstorage
"
:
"
../src/jio.storage/localstorage
"
,
"
localstorage_tests
"
:
"
jio.storage/localstorage.tests
"
,
"
qunit
"
:
"
../lib/qunit/qunit
"
,
"
qunit
"
:
"
../lib/qunit/qunit
"
,
"
sinon
"
:
"
../lib/sinon/sinon
"
,
"
sinon
"
:
"
../lib/sinon/sinon
"
,
"
sinon_qunit
"
:
"
../lib/sinon/sinon-qunit
"
"
sinon_qunit
"
:
"
../lib/sinon/sinon-qunit
"
...
@@ -25,6 +29,7 @@
...
@@ -25,6 +29,7 @@
require
([
require
([
"
sinon_qunit
"
,
"
sinon_qunit
"
,
"
jio_tests
"
"
jio_tests
"
,
"
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