Skip to content

Commit 336a56f

Browse files
committed
Docs: Fix links in imported posts
Follows-up 331e0e7.
1 parent 331e0e7 commit 336a56f

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

docs/_posts/2013-01-20-qunit-1-11-0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,4 @@ tags:
4444
## See also
4545

4646
* [Git tag: 1.11.0](https://github.com/qunitjs/qunit/releases/tag/1.11.0)
47+
* [Blog: QUnit 1.11 - A Look Back (and Forth)]({% post_url 2013-01-24-qunit-1-11-release-a-look-back-and-forth %})

docs/_posts/2013-01-24-qunit-1-11-release-a-look-back-and-forth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ tags:
66
- feature
77
---
88
9-
Earlier this week, we released a new version of [QUnit](http://qunitjs.com/), jQuery's solution for unit testing JavaScript. Along with some details on the new release, I wanted to take this opportunity to tell you a bit more about QUnit, where it came from and where it is going. [I'm also looking for your input](https://docs.google.com/spreadsheet/viewform?formkey=dDBzQl9TWmQzbDdXS08wMTBuLTlObXc6MQ#gid=0), to help us shape the future of JavaScript testing.
9+
Earlier this week, we [released]({% post_url 2013-01-20-qunit-1-11-0 %}) a new version of [QUnit](http://qunitjs.com/), jQuery's solution for unit testing JavaScript. Along with some details on the new release, I wanted to take this opportunity to tell you a bit more about QUnit, where it came from and where it is going. [I'm also looking for your input](https://docs.google.com/spreadsheet/viewform?formkey=dDBzQl9TWmQzbDdXS08wMTBuLTlObXc6MQ#gid=0), to help us shape the future of JavaScript testing.
1010

1111
## New in 1.11
1212

1313
The most visible change (aside from our new purple logo) is a runtime display for individual tests. Before, QUnit would show you how long it took to run a full test suite. Now it'll also show individual times for each test, making it easy to spot slow tests in your test suite. Since it's useful to have unit tests finish within seconds, tuning tests now becomes a bit easier.
1414

15-
Other changes are mostly bug fixes to built-in features, and various improvements to [add-ons](http://qunitjs.com/addons/). There's [a new theme](http://jquery.github.com/qunit/addons/themes/ninja.html), a overhaul of the [PhantomJS add-on](https://github.com/jquery/qunit/tree/master/addons/phantomjs) to use its [callback system](https://github.com/ariya/phantomjs/wiki/API-Reference#wiki-webpage-onCallback) and more. Check out the [changelog](https://github.com/jquery/qunit/blob/v1.11.0/History.md) for a full list of changes.
15+
Other changes are mostly bug fixes to built-in features, and various improvements to [add-ons](http://qunitjs.com/addons/). There's [a new theme](https://github.com/Krinkle/qunit-theme-ninja), a overhaul of the [PhantomJS add-on](https://github.com/qunitjs/qunit/tree/1.13.0/addons/phantomjs) to use its [callback system](https://github.com/ariya/phantomjs/wiki/API-Reference-WebPage#webpage-onCallback) and more. Check out the [changelog]({% post_url 2013-01-20-qunit-1-11-0 %}) for a full list of changes.
1616

1717
## QUnit's Evolution
1818

docs/_posts/2014-12-03-qunit-1-16-0.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: "QUnit 1.16.0 Released: Async testing and QUnit.skip"
3+
title: "QUnit 1.16.0 Released: Async testing and skip"
44
author: jzaefferer
55
tags:
66
- release
@@ -35,3 +35,4 @@ tags:
3535
## See also
3636

3737
* [Git tag: 1.16.0](https://github.com/qunitjs/qunit/releases/tag/1.16.0)
38+
* [Blog: QUnit 1.16 Release and Roadmap]({% post_url 2014-12-10-qunit-1-16-release-and-roadmap %})

docs/_posts/2014-12-10-qunit-1-16-release-and-roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In addition, QUnit 1.16 contains several improvements and new features:
3030
* [QUnit.skip](https://api.qunitjs.com/QUnit.skip/): This method can be used to define tests that aren't executed, as placeholders or to temporarily disable an existing test (instead of commenting it out). The skipped test is still displayed in the HTML reporter, marked prominently as "SKIPPED".
3131
* `testId` URL parameter: When clicking the "Rerun" link for a single test, a hash of the test name is now used to reference the test, called `testId`, instead of the previous `testNumber`. Using a hash makes sure that the order of tests can change, and QUnit will still rerun the same test you've selected before.
3232
* [CommonJS exports](https://github.com/jquery/qunit/blob/1.16.0/test/rhino-test.js): QUnit now also looks for a `exports` object and uses that to export itself, making QUnit usable on Rhino with the `-require` option.
33-
* There are a few more minor changes. For a full list, [check out the changelog](https://github.com/jquery/qunit/blob/1.16.0/History.md).
33+
* There are a few more minor changes. For a full list, [check out the changelog]({% post_url 2014-12-03-qunit-1-16-0 %}).
3434

3535
## Roadmap
3636

0 commit comments

Comments
 (0)