Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
todomvc
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
Eugene Shen
todomvc
Commits
ac8ac59e
Commit
ac8ac59e
authored
Jul 12, 2015
by
Arthur Verschaeve
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Vanillajs: fix indentation in `SpecRunner.html`
parent
f5a3695c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
42 deletions
+44
-42
examples/vanillajs/test/SpecRunner.html
examples/vanillajs/test/SpecRunner.html
+44
-42
No files found.
examples/vanillajs/test/SpecRunner.html
View file @
ac8ac59e
<!doctype html>
<html>
<head>
<title>
Jasmine Spec Runner
</title>
<link
rel=
"stylesheet"
href=
"../node_modules/jasmine/lib/jasmine-core/jasmine.css"
>
<script
src=
"../node_modules/jasmine/lib/jasmine-core/jasmine.js"
></script>
<script
src=
"../node_modules/jasmine/lib/jasmine-core/jasmine-html.js"
></script>
<!-- include spec files here... -->
<script
src=
"ControllerSpec.js"
></script>
<!-- include source files here... -->
<script>
// Bootstrap app data
window
.
app
=
{};
</script>
<script
src=
"../js/helpers.js"
></script>
<script
src=
"../js/view.js"
></script>
<script
src=
"../js/controller.js"
></script>
<script
type=
"text/javascript"
>
(
function
()
{
var
jasmineEnv
=
jasmine
.
getEnv
();
var
htmlReporter
=
new
jasmine
.
HtmlReporter
();
jasmineEnv
.
addReporter
(
htmlReporter
);
jasmineEnv
.
specFilter
=
function
(
spec
)
{
return
htmlReporter
.
specFilter
(
spec
);
};
var
currentWindowOnload
=
window
.
onload
;
window
.
onload
=
function
()
{
if
(
currentWindowOnload
)
{
currentWindowOnload
();
}
jasmineEnv
.
execute
();
};
})();
</script>
</head>
<body>
</body>
<head>
<title>
Jasmine Spec Runner
</title>
<link
rel=
"stylesheet"
href=
"../node_modules/jasmine/lib/jasmine-core/jasmine.css"
>
<script
src=
"../node_modules/jasmine/lib/jasmine-core/jasmine.js"
></script>
<script
src=
"../node_modules/jasmine/lib/jasmine-core/jasmine-html.js"
></script>
<!-- include spec files here... -->
<script
src=
"ControllerSpec.js"
></script>
<!-- include source files here... -->
<script>
// Bootstrap app data
window
.
app
=
{};
</script>
<script
src=
"../js/helpers.js"
></script>
<script
src=
"../js/view.js"
></script>
<script
src=
"../js/controller.js"
></script>
<script
type=
"text/javascript"
>
(
function
()
{
var
jasmineEnv
=
jasmine
.
getEnv
();
var
htmlReporter
=
new
jasmine
.
HtmlReporter
();
jasmineEnv
.
addReporter
(
htmlReporter
);
jasmineEnv
.
specFilter
=
function
(
spec
)
{
return
htmlReporter
.
specFilter
(
spec
);
};
var
currentWindowOnload
=
window
.
onload
;
window
.
onload
=
function
()
{
if
(
currentWindowOnload
)
{
currentWindowOnload
();
}
jasmineEnv
.
execute
();
};
})();
</script>
</head>
<body>
</body>
</html>
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