Skip to content

Commit

Permalink
Showing 9 changed files with 13 additions and 13 deletions.
Binary file removed images/accept.png
Binary file not shown.
Binary file removed images/exclamation.png
Binary file not shown.
Binary file added images/fail-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/fail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/go-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/go.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 10 additions & 10 deletions jasmine.iws
Original file line number Diff line number Diff line change
@@ -101,7 +101,7 @@
<file leaf-file-name="bootstrap.js" pinned="false" current="true" current-in-tab="true">
<entry file="file://$PROJECT_DIR$/test/bootstrap.js">
<provider selected="true" editor-type-id="text-editor">
<state line="863" column="16" selection-start="26512" selection-end="26512" vertical-scroll-proportion="0.46424976">
<state line="841" column="18" selection-start="25839" selection-end="25839" vertical-scroll-proportion="0.61732125">
<folding />
</state>
</provider>
@@ -131,7 +131,7 @@
<file leaf-file-name="jasmine.css" pinned="false" current="false" current-in-tab="false">
<entry file="file://$PROJECT_DIR$/lib/jasmine.css">
<provider selected="true" editor-type-id="text-editor">
<state line="16" column="8" selection-start="315" selection-end="315" vertical-scroll-proportion="0.29400387">
<state line="17" column="36" selection-start="351" selection-end="351" vertical-scroll-proportion="0.31237912">
<folding />
</state>
</provider>
@@ -534,13 +534,6 @@
<state />
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/lib/jasmine.css">
<provider selected="true" editor-type-id="text-editor">
<state line="16" column="8" selection-start="315" selection-end="315" vertical-scroll-proportion="0.29400387">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/example/example.js">
<provider selected="true" editor-type-id="text-editor">
<state line="6" column="0" selection-start="183" selection-end="183" vertical-scroll-proportion="0.11025145">
@@ -562,9 +555,16 @@
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/lib/jasmine.css">
<provider selected="true" editor-type-id="text-editor">
<state line="17" column="36" selection-start="351" selection-end="351" vertical-scroll-proportion="0.31237912">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/test/bootstrap.js">
<provider selected="true" editor-type-id="text-editor">
<state line="863" column="16" selection-start="26512" selection-end="26512" vertical-scroll-proportion="0.46424976">
<state line="841" column="18" selection-start="25839" selection-end="25839" vertical-scroll-proportion="0.61732125">
<folding />
</state>
</provider>
2 changes: 1 addition & 1 deletion lib/jasmine.css
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ p {
}

p.fail {
background: url( ../images/exclamation.png ) no-repeat;
background: url( ../images/fail-16.png ) no-repeat;
color: red;
}

4 changes: 2 additions & 2 deletions test/bootstrap.js
Original file line number Diff line number Diff line change
@@ -12,15 +12,15 @@ var reporter = function () {
if (result) {
passes++;
iconElement = $('icons');
iconElement.appendChild(new Element('img', {src: '../images/accept.png'}));
iconElement.appendChild(new Element('img', {src: '../images/go-16.png'}));
}
else {
fails++;
var fails_report = $('fails');
fails_report.show();

var iconElement = $('icons');
iconElement.appendChild(new Element('img', {src: '../images/exclamation.png'}));
iconElement.appendChild(new Element('img', {src: '../images/fail-16.png'}));

var failMessages = $('fail_messages');
var newFail = new Element('p', {'class': 'fail'});

0 comments on commit c9edbbe

Please sign in to comment.