Skip to content

Commit 22ebb74

Browse files
committed
Use a monospace font for code
Fixes #136
1 parent 196e903 commit 22ebb74

8 files changed

+57
-45
lines changed

_tutorials/async.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Asynchronous code is common in modern Javascript applications. Testing it is mos
1111

1212
Jasmine supports three ways of managing asynchronous work: `async`/`await`, promises, and callbacks. If Jasmine doesn't detect one of these, it will assume that the work is synchronous and move on to the next thing in the queue as soon as the function returns. All of these mechanisms work for `beforeEach`, `afterEach`, `beforeAll`, `afterAll`, and `it`.
1313

14-
## `async`/`await`
14+
## `async/await`
1515
Usually, the most convenient way to write async tests is to use `async`/`await`. `async` functions implicitly return a promise. Jasmine will wait until the returned promise is either resolved or rejected before moving on to the next thing in the queue. Rejected promises will cause a spec failure, or a suite-level failure in the case of `beforeAll` or `afterAll`.
1616

1717
```javascript
@@ -52,11 +52,8 @@ It's vital that the `done` callback be called exactly once, and that calling `do
5252
```javascript
5353
beforeEach(function(done) {
5454
setTimeout(function() {
55-
5655
// do some stuff
57-
5856
done();
59-
6057
}, 100);
6158
});
6259

_tutorials/custom_matcher.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ ignore it. It will no longer be provided in Jasmine 4.</p>
139139
<td class="code">
140140
<div class="highlight" markdown="1">
141141
```javascript
142-
result.pass = matchersUtil.equals(actual.hyuk, "gawrsh" + expected);
142+
result.pass = matchersUtil.equals(actual.hyuk,
143+
"gawrsh" + expected);
143144
```
144145
</div>
145146
</td>
@@ -171,7 +172,8 @@ ignore it. It will no longer be provided in Jasmine 4.</p>
171172
<td class="code">
172173
<div class="highlight" markdown="1">
173174
```javascript
174-
result.message = "Expected " + actual + " not to be quite so goofy";
175+
result.message = "Expected " + actual +
176+
" not to be quite so goofy";
175177
} else {
176178
```
177179
</div>
@@ -187,7 +189,8 @@ ignore it. It will no longer be provided in Jasmine 4.</p>
187189
<td class="code">
188190
<div class="highlight" markdown="1">
189191
```javascript
190-
result.message = "Expected " + actual + " to be goofy, but it was not very goofy";
192+
result.message = "Expected " + actual +
193+
" to be goofy, but it was not very goofy";
191194
}
192195
```
193196
</div>

_tutorials/mocking_ajax.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ Jasmine-Ajax mocks out your request at the XMLHttpRequest object, so should be c
112112
<td class="code">
113113
<div class="highlight" markdown="1">
114114
```javascript
115-
expect(jasmine.Ajax.requests.mostRecent().url).toBe('/some/cool/url');
115+
expect(jasmine.Ajax.requests.mostRecent().url)
116+
.toBe('/some/cool/url');
116117
expect(doneFn).not.toHaveBeenCalled();
117118
```
118119
</div>

_tutorials/your_first_suite.md

+37-17
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,8 @@ describe("A spec", function() {
263263
this.bar = "test pollution?";
264264
});
265265

266-
it("prevents test pollution by having an empty `this` created for the next spec", function() {
266+
it("prevents test pollution by having an empty `this` " +
267+
"created for the next spec", function() {
267268
expect(this.foo).toEqual(0);
268269
expect(this.bar).toBe(undefined);
269270
});
@@ -620,7 +621,10 @@ describe("Multiple spies, when created manually", function() {
620621
let tape;
621622

622623
beforeEach(function() {
623-
tape = jasmine.createSpyObj('tape', ['play', 'pause', 'stop', 'rewind']);
624+
tape = jasmine.createSpyObj(
625+
'tape',
626+
['play', 'pause', 'stop', 'rewind']
627+
);
624628

625629
tape.play();
626630
tape.pause();
@@ -680,7 +684,9 @@ It returns <code>true</code> if the constructor matches the constructor of the a
680684
return true;
681685
});
682686

683-
expect(foo).toHaveBeenCalledWith(jasmine.any(Number), jasmine.any(Function));
687+
expect(foo).toHaveBeenCalledWith(
688+
jasmine.any(Number), jasmine.any(Function)
689+
);
684690
});
685691
});
686692
});
@@ -756,9 +762,9 @@ It returns <code>true</code> if the constructor matches the constructor of the a
756762
bar: "baz"
757763
});
758764

759-
expect(callback).toHaveBeenCalledWith(jasmine.objectContaining({
760-
bar: "baz"
761-
}));
765+
expect(callback).toHaveBeenCalledWith(
766+
jasmine.objectContaining({ bar: "baz" })
767+
);
762768
});
763769
});
764770
});
@@ -794,8 +800,12 @@ It returns <code>true</code> if the constructor matches the constructor of the a
794800

795801
callback([1, 2, 3, 4]);
796802

797-
expect(callback).toHaveBeenCalledWith(jasmine.arrayContaining([4, 2, 3]));
798-
expect(callback).not.toHaveBeenCalledWith(jasmine.arrayContaining([5, 2]));
803+
expect(callback).toHaveBeenCalledWith(
804+
jasmine.arrayContaining([4, 2, 3])
805+
);
806+
expect(callback).not.toHaveBeenCalledWith(
807+
jasmine.arrayContaining([5, 2])
808+
);
799809
});
800810
});
801811
});
@@ -815,8 +825,12 @@ It returns <code>true</code> if the constructor matches the constructor of the a
815825
```javascript
816826
describe('jasmine.stringMatching', function() {
817827
it("matches as a regexp", function() {
818-
expect({foo: 'bar'}).toEqual({foo: jasmine.stringMatching(/^bar$/)});
819-
expect({foo: 'foobarbaz'}).toEqual({foo: jasmine.stringMatching('bar')});
828+
expect({foo: 'bar'}).toEqual({
829+
foo: jasmine.stringMatching(/^bar$/)
830+
});
831+
expect({foo: 'foobarbaz'}).toEqual({
832+
foo: jasmine.stringMatching('bar')
833+
});
820834
});
821835

822836
describe("when used with a spy", function() {
@@ -825,8 +839,12 @@ It returns <code>true</code> if the constructor matches the constructor of the a
825839

826840
callback('foobarbaz');
827841

828-
expect(callback).toHaveBeenCalledWith(jasmine.stringMatching('bar'));
829-
expect(callback).not.toHaveBeenCalledWith(jasmine.stringMatching(/^bar$/));
842+
expect(callback).toHaveBeenCalledWith(
843+
jasmine.stringMatching('bar')
844+
);
845+
expect(callback).not.toHaveBeenCalledWith(
846+
jasmine.stringMatching(/^bar$/)
847+
);
830848
});
831849
});
832850
});
@@ -1050,11 +1068,13 @@ describe("Using async/await", function() {
10501068
<td class="code">
10511069
<div class="highlight" markdown="1">
10521070
```javascript
1053-
it("should support async execution of test preparation and expectations", async function() {
1054-
await soon();
1055-
value++;
1056-
expect(value).toBeGreaterThan(0);
1057-
});
1071+
it("supports async execution of test preparation and expectations",
1072+
async function() {
1073+
await soon();
1074+
value++;
1075+
expect(value).toBeGreaterThan(0);
1076+
}
1077+
);
10581078
});
10591079
```
10601080
</div>

css/_scss/article.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
}
3131

3232
pre.highlight {
33-
font-family: Consolas,"Liberation Mono",Menlo,Courier,monospace;
33+
@include light-code();
3434
}
3535

3636
code.highlighter-rouge {

css/_scss/mixins.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@mixin light-code() {
22
background-color: #f0f0f0;
3-
font-family: Consolas,"Liberation Mono",Menlo,Courier,monospace;
3+
font-family: Menlo, Courier, monospace;
4+
font-size: 14px;
45
}

css/_scss/reset.scss

-6
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,4 @@ th {
2929

3030
figure, pre {
3131
margin: 0;
32-
}
33-
34-
// TODO: Fix side-by-side tutorials to lay out correctly with a monospace font,
35-
// then remove this.
36-
code {
37-
font-family: Helvetica, sans-serif;
3832
}

css/jasmine_docco.scss

+8-12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
---
3+
4+
@import 'mixins';
5+
16
table.docco {
27
/* Prevent overly-wide <pre> from blowing out the width of the table */
38
width: 100%;
@@ -13,12 +18,6 @@ table.docco td.code, table.docco th.code {
1318
padding: 14px 15px 16px 25px;
1419
}
1520

16-
/* Ensure that code gets 16px even if the element has been de-docco'd
17-
This overrides the more general style for table td code in pages.scss. */
18-
table.docco .code code {
19-
font-size: 16px;
20-
}
21-
2221
.docco th.docs, .docco td.docs {
2322
width: 26%;
2423
padding: 10px 25px 1px 0px;
@@ -52,14 +51,11 @@ table.docco .code code {
5251
padding-left: 0;
5352
}
5453

55-
.code {
56-
/* TODO: Fix the tutorial code to fit when using the light-code font,
57-
then use the light-code mixin. */
58-
background-color: #f0f0f0;
54+
.code, .code code {
55+
@include light-code();
5956
}
6057

6158
.docs code {
6259
/* make jasmine.DEFAULT_TIMEOUT_INTERVAL fit */
6360
font-size: 12px;
64-
}
65-
61+
}

0 commit comments

Comments
 (0)