Skip to content

Commit 94c4264

Browse files
committed
Build commit f021c9b
1 parent cdcccb3 commit 94c4264

File tree

208 files changed

+4990
-1874
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

208 files changed

+4990
-1874
lines changed

404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>Page not found | QUnit</title><meta property="og:title" content="Page not found"><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

about/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>About | QUnit</title><meta property="og:title" content="About"><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/QUnit/hooks/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>QUnit.hooks | QUnit</title><meta property="og:title" content="QUnit.hooks"><meta name="description" content="Add global callbacks to run before or after each test."><meta property="og:description" content="Add global callbacks to run before or after each test."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/QUnit/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>Main methods | QUnit</title><meta property="og:title" content="Main methods"><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image"><meta name="robots" content="noindex,follow"><meta name="docsearch:amethyst_pagetype_navigation" content="1">
99
<body>

api/QUnit/load/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>QUnit.load() | QUnit</title><meta property="og:title" content="QUnit.load()"><meta name="description" content="Inform the test runner that code has finished loading."><meta property="og:description" content="Inform the test runner that code has finished loading."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/QUnit/module/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>QUnit.module() | QUnit</title><meta property="og:title" content="QUnit.module()"><meta name="description" content="Group related tests under a common label."><meta property="og:description" content="Group related tests under a common label."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>
@@ -109,11 +109,11 @@ <h2 id="description" class="screen-reader-text h-api-desc">Description</h2>
109109
<p>Modules can be nested inside other modules via a <a href="#module-scope">module scope</a>. In the output, tests are generally prefixed by the names of all parent modules. E.g. “Grandparent &gt; Parent &gt; Child &gt; my test”.</p>
110110

111111
<p><code class="language-plaintext highlighter-rouge">QUnit.module.only( name, … )</code><br />
112-
<code class="language-plaintext highlighter-rouge">QUnit.module.todo( name, … )</code><br />
113112
<code class="language-plaintext highlighter-rouge">QUnit.module.skip( name, … )</code><br />
113+
<code class="language-plaintext highlighter-rouge">QUnit.module.todo( name, … )</code><br />
114114
<code class="language-plaintext highlighter-rouge">QUnit.module.if( name, condition, … )</code></p>
115115

116-
<p>These methods are aliases for <code class="language-plaintext highlighter-rouge">QUnit.module()</code> that apply the behaviour of <a href="/api/QUnit/test.only/"><code class="language-plaintext highlighter-rouge">QUnit.test.only()</code></a>, <a href="/api/QUnit/test.todo/"><code class="language-plaintext highlighter-rouge">QUnit.test.todo()</code></a>, <a href="/api/QUnit/test.skip/"><code class="language-plaintext highlighter-rouge">QUnit.test.skip()</code></a> or <a href="/api/QUnit/test.if/"><code class="language-plaintext highlighter-rouge">QUnit.test.if()</code></a> to all a module’s tests at once.</p>
116+
<p>These methods are aliases for <code class="language-plaintext highlighter-rouge">QUnit.module()</code> that apply the behaviour of <a href="/api/QUnit/test.only/"><code class="language-plaintext highlighter-rouge">QUnit.test.only()</code></a>, <a href="/api/QUnit/test.skip/"><code class="language-plaintext highlighter-rouge">QUnit.test.skip()</code></a>, <a href="/api/QUnit/test.todo/"><code class="language-plaintext highlighter-rouge">QUnit.test.todo()</code></a>, or <a href="/api/QUnit/test.if/"><code class="language-plaintext highlighter-rouge">QUnit.test.if()</code></a> to all a module’s tests at once.</p>
117117

118118
<h3 id="organizing-your-tests">Organizing your tests</h3>
119119

api/QUnit/start/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>QUnit.start() | QUnit</title><meta property="og:title" content="QUnit.start()"><meta name="description" content="Start the test runner."><meta property="og:description" content="Start the test runner."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/QUnit/test.each/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>QUnit.test.each() | QUnit</title><meta property="og:title" content="QUnit.test.each()"><meta name="description" content="Add tests using a data provider."><meta property="og:description" content="Add tests using a data provider."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>
@@ -76,8 +76,8 @@ <h1>QUnit.test.each()</h1>
7676
<h2 id="description" class="screen-reader-text h-api-desc">Description</h2>
7777
<p><code class="language-plaintext highlighter-rouge">QUnit.test.each( name, dataset, callback )</code><br />
7878
<code class="language-plaintext highlighter-rouge">QUnit.test.only.each( name, dataset, callback )</code><br />
79-
<code class="language-plaintext highlighter-rouge">QUnit.test.todo.each( name, dataset, callback )</code><br />
8079
<code class="language-plaintext highlighter-rouge">QUnit.test.skip.each( name, dataset, callback )</code><br />
80+
<code class="language-plaintext highlighter-rouge">QUnit.test.todo.each( name, dataset, callback )</code><br />
8181
<code class="language-plaintext highlighter-rouge">QUnit.test.if.each( name, condition, dataset, callback )</code></p>
8282

8383
<p>Add tests using a data provider.</p>
@@ -132,7 +132,7 @@ <h3 id="callback-parameters">Callback parameters</h3>
132132

133133
<p>Each test case is passed one item from your dataset.</p>
134134

135-
<p>The <a href="/api/QUnit/test.only/"><code class="language-plaintext highlighter-rouge">only</code></a>, <a href="/api/QUnit/test.todo/"><code class="language-plaintext highlighter-rouge">todo</code></a>, <a href="/api/QUnit/test.skip/"><code class="language-plaintext highlighter-rouge">skip</code></a>, and <a href="/api/QUnit/test.if/"><code class="language-plaintext highlighter-rouge">if</code></a> variants are also available, as <code class="language-plaintext highlighter-rouge">QUnit.test.only.each</code>, <code class="language-plaintext highlighter-rouge">QUnit.test.todo.each</code>, <code class="language-plaintext highlighter-rouge">QUnit.test.skip.each</code>, and <code class="language-plaintext highlighter-rouge">QUnit.test.if.each</code> respectively.</p>
135+
<p>The <a href="/api/QUnit/test.only/"><code class="language-plaintext highlighter-rouge">only</code></a>, <a href="/api/QUnit/test.skip/"><code class="language-plaintext highlighter-rouge">skip</code></a>, <a href="/api/QUnit/test.todo/"><code class="language-plaintext highlighter-rouge">todo</code></a>, and <a href="/api/QUnit/test.if/"><code class="language-plaintext highlighter-rouge">if</code></a> variants are also available, as <code class="language-plaintext highlighter-rouge">QUnit.test.only.each</code>, <code class="language-plaintext highlighter-rouge">QUnit.test.skip.each</code>, <code class="language-plaintext highlighter-rouge">QUnit.test.todo.each</code>, and <code class="language-plaintext highlighter-rouge">QUnit.test.if.each</code> respectively.</p>
136136

137137
<h3 id="reduce-code-duplication">Reduce code duplication</h3>
138138

api/QUnit/test.if/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>QUnit.test.if() | QUnit</title><meta property="og:title" content="QUnit.test.if()"><meta name="description" content="Add a test that may be skipped."><meta property="og:description" content="Add a test that may be skipped."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/QUnit/test.only/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>QUnit.test.only() | QUnit</title><meta property="og:title" content="QUnit.test.only()"><meta name="description" content="Add a test that is exclusively run."><meta property="og:description" content="Add a test that is exclusively run."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/QUnit/test.skip/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>QUnit.test.skip() | QUnit</title><meta property="og:title" content="QUnit.test.skip()"><meta name="description" content="Add a test that will be skipped."><meta property="og:description" content="Add a test that will be skipped."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/QUnit/test.todo/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>QUnit.test.todo() | QUnit</title><meta property="og:title" content="QUnit.test.todo()"><meta name="description" content="Add a test which expects at least one failing assertion."><meta property="og:description" content="Add a test which expects at least one failing assertion."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/QUnit/test/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>QUnit.test() | QUnit</title><meta property="og:title" content="QUnit.test()"><meta name="description" content="Define a test."><meta property="og:description" content="Define a test."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>
@@ -123,6 +123,7 @@ <h3 id="callback-parameters">Callback parameters</h3>
123123
<li><a href="/api/QUnit/test.only/"><code class="language-plaintext highlighter-rouge">QUnit.test.only()</code></a></li>
124124
<li><a href="/api/QUnit/test.skip/"><code class="language-plaintext highlighter-rouge">QUnit.test.skip()</code></a></li>
125125
<li><a href="/api/QUnit/test.todo/"><code class="language-plaintext highlighter-rouge">QUnit.test.todo()</code></a></li>
126+
<li><a href="/api/QUnit/test.if/"><code class="language-plaintext highlighter-rouge">QUnit.test.if()</code></a></li>
126127
</ul>
127128

128129
<h2 id="changelog">Changelog</h2>

api/assert/async/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>assert.async() | QUnit</title><meta property="og:title" content="assert.async()"><meta name="description" content="Instruct QUnit to wait for an asynchronous operation."><meta property="og:description" content="Instruct QUnit to wait for an asynchronous operation."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/assert/closeTo/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>assert.closeTo() | QUnit</title><meta property="og:title" content="assert.closeTo()"><meta name="description" content="Compare that a number is equal within a given tolerance."><meta property="og:description" content="Compare that a number is equal within a given tolerance."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/assert/deepEqual/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>assert.deepEqual() | QUnit</title><meta property="og:title" content="assert.deepEqual()"><meta name="description" content="A recursive and strict comparison."><meta property="og:description" content="A recursive and strict comparison."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/assert/equal/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>assert.equal() | QUnit</title><meta property="og:title" content="assert.equal()"><meta name="description" content="A non-strict comparison."><meta property="og:description" content="A non-strict comparison."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/assert/expect/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>assert.expect() | QUnit</title><meta property="og:title" content="assert.expect()"><meta name="description" content="Specify how many assertions are expected in a test."><meta property="og:description" content="Specify how many assertions are expected in a test."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/assert/false/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>assert.false() | QUnit</title><meta property="og:title" content="assert.false()"><meta name="description" content="A strict boolean false comparison."><meta property="og:description" content="A strict boolean false comparison."><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image">
99
<body>

api/assert/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<link rel="icon" href="/favicon.svg">
6-
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
6+
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
77
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
88
<title>Assertions | QUnit</title><meta property="og:title" content="Assertions"><link rel="me" href="https://fosstodon.org/@qunit"><meta name="twitter:card" content="summary_large_image"><meta name="robots" content="index"><meta name="docsearch:amethyst_pagetype_navigation" content="1">
99
<body>

0 commit comments

Comments
 (0)