Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
renderjs
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
Vincent Bechu
renderjs
Commits
103d5cd3
Commit
103d5cd3
authored
Sep 12, 2014
by
Romain Courteaud
🐸
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increase verbosity in case of test errors.
parent
2d73dbdb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
test/renderjs_test.js
test/renderjs_test.js
+7
-3
No files found.
test/renderjs_test.js
View file @
103d5cd3
...
...
@@ -986,6 +986,9 @@
.
then
(
function
(
result
)
{
equal
(
result
,
"
foo
"
);
})
.
fail
(
function
(
e
)
{
ok
(
false
,
e
);
})
.
always
(
function
()
{
start
();
});
...
...
@@ -1175,7 +1178,8 @@
ok
(
false
,
"
getElement should fail
"
);
})
.
fail
(
function
(
e
)
{
ok
(
e
instanceof
Error
);
ok
(
e
instanceof
Error
,
e
);
equal
(
e
.
message
,
"
No element defined
"
);
})
.
always
(
function
()
{
start
();
...
...
@@ -3032,8 +3036,8 @@
.
then
(
function
()
{
ok
(
getTopURLCalled
);
})
.
fail
(
function
()
{
ok
(
false
);
.
fail
(
function
(
e
)
{
ok
(
false
,
e
);
});
});
})
...
...
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