Skip to content

Commit e2f1f0e

Browse files
committed
1 parent 4bfa0be commit e2f1f0e

30 files changed

+360
-1
lines changed

docs/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ source "https://rubygems.org"
22
ruby RUBY_VERSION
33

44
# To apply changes, run `bundle update`.
5-
gem "jekyll-theme-amethyst", "2.9.0", group: :jekyll_plugins
5+
gem "jekyll-theme-amethyst", "2.10.0", group: :jekyll_plugins
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: post
3+
title: "Link: JavaScript Jabber podcast"
4+
author: jzaefferer
5+
tags:
6+
- link
7+
---
8+
9+
JsJabber episode #50 in which I talk about QUnit with Charles, Joe and Jamison.
10+
11+
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/g9ykvSI0gjg?si=p83T4WCOTmsIhgun" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
12+
13+
* [Listen on YouTube](https://www.youtube.com/watch?v=g9ykvSI0gjg)
14+
* [Listen on Overcast](https://overcast.fm/+ABHmqorVYHk)
15+
* [Show Notes and Transcript](https://topenddevs.com/podcasts/javascript-jabber/episodes/050-jsj-qunit-with-jorn-zaefferer)
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: post
3+
title: "Link: Testing JavaScript callbacks with QUnit - Codeship Blog"
4+
author: jzaefferer
5+
tags:
6+
- link
7+
---
8+
9+
10+
Clemens Helm in the latest Testing Tuesday podcast for the Codeship Blog:
11+
12+
> QUnit has got strong roots in frontend JavaScript testing and includes some neat features to test DOM operations. QUnit is perfectly capable of testing your Node.js projects as well.
13+
>
14+
> Learn how to test synchronous and asynchronous JavaScript callbacks with QUnit []
15+
16+
* [Original article and transcript](https://web.archive.org/web/20140501091548/https://blog.codeship.io/2013/09/03/testing-tuesday-21-testing-synchronous-and-asynchronous-javascript-callbacks-with-qunit.html) (archived)
17+
* [Codeship Blog](https://www.cloudbees.com/blog/qunit-javascript-callback)
18+
* [Watch on YouTube](https://www.youtube.com/watch?v=S92m3Ym1gpc&t=15s)
19+
20+
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/S92m3Ym1gpc?si=LkahOpbYjwUVCGzS&amp;start=15" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
21+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: post
3+
title: "Link: WordPress starts unit testing with QUnit"
4+
author: krinkle
5+
tags:
6+
- link
7+
---
8+
9+
Aaron Jorbin wrote on the official [Make WordPress](https://make.wordpress.org/core/2013/09/13/javascript-unit-tests-for-core/) blog:
10+
11+
> Recently WordPress added QUnit as a JavaScript unit testing framework and added its first JavaScript unit tests. I thought I would walk through how to run the tests and how to write tests so that we can increase our JavaScript test coverage. []
12+
13+
## See also
14+
15+
* [WordPress Trac #25088](https://core.trac.wordpress.org/ticket/25088)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: post
3+
title: "Link: QUnit Hacking in Brazil"
4+
author: jzaefferer
5+
tags:
6+
- link
7+
---
8+
9+
Boaz Sender wrote on [Twitter](https://twitter.com/BoazSender/status/503946938668957696) after [BrazilJS](https://2014.braziljs.org/en) in Rio de Janeiro:
10+
11+
> .@bassistance & @leobalter closing bugs on @qunitjs.
12+
>
13+
> <img src="/resources/2014-brazil-hacking.jpg" alt="" width="500" height="320">
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
layout: post
3+
title: "Link: Upgrade Guide"
4+
author: jzaefferer
5+
tags:
6+
- link
7+
---
8+
9+
And we've published the upgrade guide for 2.x:
10+
11+
<https://qunitjs.com/upgrade-guide-2.x/>
12+
13+
All the new APIs are already in 1.16, you can migrate now.
14+
15+
-------
16+
17+
_Originally published on [Twitter](https://twitter.com/qunitjs/status/540199370168496129)._
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: post
3+
title: "Link: QUnit Tutorials - SitePoint"
4+
author: jzaefferer
5+
tags:
6+
- link
7+
---
8+
9+
Aurelio De Rosa wrote [What’s New in QUnit 1.16](https://web.archive.org/web/20150206130605/http://sitepoint.com/whats-new-qunit-1-16/) for the SitePoint Blog:
10+
11+
> In December, version 1.16 of [QUnit] was released with some important changes. []
12+
>
13+
> Updating your tests to version 1.16 now will help you in the process of the migration to version 2.0. QUnit 1.16 introduces several new methods that will become the default in the next milestone, []
14+
15+
## See also
16+
17+
* [Getting Started with QUnit - SitePoint](https://www.sitepoint.com/getting-started-qunit/)
18+
* [How to Test Asynchronous Code with QUnit - SitePoint](https://www.sitepoint.com/test-asynchronous-code-qunit/)
19+
* [QUnit Advanced Concepts: Modules and Configuration - SitePoint](https://www.sitepoint.com/qunit-advanced-concepts-modules-configuration/)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: post
3+
title: "Link: QUnit Migrate by Amanpreet Singh"
4+
author: jzaefferer
5+
tags:
6+
- link
7+
---
8+
9+
Amanpreet Singh [wrote](https://twitter.com/apsdehal/status/618855917669453825):
10+
11+
> If you are messed up with your QUnit code and want to remove deprecated code, you should have a look at <https://github.com/apsdehal/qunit-migrate>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: post
3+
title: "Link: Welcome Leo Balter as project lead"
4+
author: jzaefferer
5+
tags:
6+
- link
7+
---
8+
9+
From [Twitter](https://twitter.com/leobalter/status/648903145200992257):
10+
11+
> I am proud to be officially the new #QUnit dev lead. Looking forward to make it a better test tool for everyone!
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: post
3+
title: "Link: 1000 Commits Milestone!"
4+
author: leobalter
5+
tags:
6+
- link
7+
---
8+
9+
Maybe the stars are not aligned, but QUnit just got its issue #1000 fixed by the commit #1000. It means something <https://github.com/qunitjs/qunit/issues/1000>
10+
11+
-------
12+
13+
_Originally published on [Twitter](https://twitter.com/qunitjs/status/732620820049235968)._

0 commit comments

Comments
 (0)