Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
raphael
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nhn
raphael
Commits
af9bcf72
Commit
af9bcf72
authored
Nov 06, 2013
by
Adrian Phinney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add unit test suite structure.
parent
ea133a03
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
1 deletion
+36
-1
package.json
dev/package.json
+2
-1
index.html
dev/test/index.html
+34
-0
dom.js
dev/test/svg/dom.js
+0
-0
dom.js
dev/test/vml/dom.js
+0
-0
No files found.
dev/package.json
View file @
af9bcf72
...
...
@@ -16,6 +16,7 @@
"gitHead"
:
"52bff469f60988f1391e8b3d7cb5349163df8ba1"
,
"devDependencies"
:
{
"grunt"
:
"~0.4.1"
,
"grunt-contrib-uglify"
:
"~0.2.0"
"grunt-contrib-uglify"
:
"~0.2.0"
,
"qunitjs"
:
"~1.12.0"
}
}
dev/test/index.html
0 → 100644
View file @
af9bcf72
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<title>
Raphael Test Suite
</title>
<link
rel=
"stylesheet"
href=
"../node_modules/qunitjs/qunit/qunit.css"
/>
</head>
<body>
<div
id=
"qunit"
></div>
<div
id=
"qunit-fixture"
></div>
<script
type=
"text/javascript"
src=
"../node_modules/qunitjs/qunit/qunit.js"
></script>
<script
type=
"text/javascript"
src=
"../../eve/eve.js"
></script>
<script
type=
"text/javascript"
src=
"../raphael.core.js"
></script>
<script
type=
"text/javascript"
src=
"../raphael.svg.js"
></script>
<script
type=
"text/javascript"
src=
"../raphael.vml.js"
></script>
<script
type=
"text/javascript"
>
(
function
()
{
var
tests
=
[
"dom"
];
var
typeFolder
=
Raphael
.
type
.
toLowerCase
();
for
(
var
i
=
0
;
i
<
tests
.
length
;
i
++
)
{
var
s
=
document
.
createElement
(
'script'
);
s
.
type
=
"text/javascript"
;
s
.
src
=
typeFolder
+
"/"
+
tests
[
i
]
+
".js"
;
document
.
body
.
appendChild
(
s
);
}
})();
</script>
</body>
</html>
\ No newline at end of file
dev/test/svg/dom.js
0 → 100644
View file @
af9bcf72
dev/test/vml/dom.js
0 → 100644
View file @
af9bcf72
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