Skip to content

Commit

Permalink
Build commit f021c9b
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle committed Jan 25, 2025
1 parent cdcccb3 commit 94c4264
Show file tree
Hide file tree
Showing 208 changed files with 4,990 additions and 1,874 deletions.
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion about/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/QUnit/hooks/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/QUnit/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/QUnit/load/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
6 changes: 3 additions & 3 deletions api/QUnit/module/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down Expand Up @@ -109,11 +109,11 @@ <h2 id="description" class="screen-reader-text h-api-desc">Description</h2>
<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>

<p><code class="language-plaintext highlighter-rouge">QUnit.module.only( name, … )</code><br />
<code class="language-plaintext highlighter-rouge">QUnit.module.todo( name, … )</code><br />
<code class="language-plaintext highlighter-rouge">QUnit.module.skip( name, … )</code><br />
<code class="language-plaintext highlighter-rouge">QUnit.module.todo( name, … )</code><br />
<code class="language-plaintext highlighter-rouge">QUnit.module.if( name, condition, … )</code></p>

<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>
<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>

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

Expand Down
2 changes: 1 addition & 1 deletion api/QUnit/start/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
6 changes: 3 additions & 3 deletions api/QUnit/test.each/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down Expand Up @@ -76,8 +76,8 @@ <h1>QUnit.test.each()</h1>
<h2 id="description" class="screen-reader-text h-api-desc">Description</h2>
<p><code class="language-plaintext highlighter-rouge">QUnit.test.each( name, dataset, callback )</code><br />
<code class="language-plaintext highlighter-rouge">QUnit.test.only.each( name, dataset, callback )</code><br />
<code class="language-plaintext highlighter-rouge">QUnit.test.todo.each( name, dataset, callback )</code><br />
<code class="language-plaintext highlighter-rouge">QUnit.test.skip.each( name, dataset, callback )</code><br />
<code class="language-plaintext highlighter-rouge">QUnit.test.todo.each( name, dataset, callback )</code><br />
<code class="language-plaintext highlighter-rouge">QUnit.test.if.each( name, condition, dataset, callback )</code></p>

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

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

<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>
<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>

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

Expand Down
2 changes: 1 addition & 1 deletion api/QUnit/test.if/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/QUnit/test.only/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/QUnit/test.skip/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/QUnit/test.todo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
3 changes: 2 additions & 1 deletion api/QUnit/test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down Expand Up @@ -123,6 +123,7 @@ <h3 id="callback-parameters">Callback parameters</h3>
<li><a href="/api/QUnit/test.only/"><code class="language-plaintext highlighter-rouge">QUnit.test.only()</code></a></li>
<li><a href="/api/QUnit/test.skip/"><code class="language-plaintext highlighter-rouge">QUnit.test.skip()</code></a></li>
<li><a href="/api/QUnit/test.todo/"><code class="language-plaintext highlighter-rouge">QUnit.test.todo()</code></a></li>
<li><a href="/api/QUnit/test.if/"><code class="language-plaintext highlighter-rouge">QUnit.test.if()</code></a></li>
</ul>

<h2 id="changelog">Changelog</h2>
Expand Down
2 changes: 1 addition & 1 deletion api/assert/async/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/assert/closeTo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/assert/deepEqual/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/assert/equal/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/assert/expect/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/assert/false/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
2 changes: 1 addition & 1 deletion api/assert/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/assets/styles.css?v=8679f7e0" media="screen">
<link rel="stylesheet" href="/assets/styles.css?v=24854486" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="QUnit">
<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">
<body>
Expand Down
Loading

0 comments on commit 94c4264

Please sign in to comment.