Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Set up redirects for old urls #1292

Merged
merged 1 commit into from Jun 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/QUnit/module.md
Expand Up @@ -4,6 +4,11 @@ title: module
description: Group related tests under a single label.
categories:
- main
redirect_from:
- "/QUnit.module"
- "/QUnit.module/"
- "/module"
- "/module/"
---

## `QUnit.module( name [, hooks] [, nested ] )`
Expand Down
3 changes: 3 additions & 0 deletions docs/QUnit/start.md
Expand Up @@ -5,6 +5,9 @@ description: QUnit.start() is used to start an async test set
categories:
- main
- async
redirect_from:
- "/start"
- "/start/"
---

## `QUnit.start()`
Expand Down
9 changes: 9 additions & 0 deletions docs/QUnit/test.md
Expand Up @@ -5,6 +5,15 @@ description: Add a test to run.
categories:
- main
- async
redirect_from:
- "/QUnit.asyncTest"
- "/QUnit.asyncTest/"
- "/QUnit.test"
- "/QUnit.test/"
- "/asyncTest"
- "/asyncTest/"
- "/test"
- "/test/"
---

## `QUnit.test( name, callback )`
Expand Down
4 changes: 4 additions & 0 deletions docs/assert/async.md
Expand Up @@ -6,7 +6,11 @@ categories:
- assert
- async
redirect_from:
- "/QUnit.stop"
- "/QUnit.stop/"
- "/QUnit/stop"
- "/stop"
- "/stop/"
---

## `async( [ acceptCallCount = 1 ] )`
Expand Down
3 changes: 3 additions & 0 deletions docs/assert/deepEqual.md
Expand Up @@ -4,6 +4,9 @@ title: deepEqual
description: A deep recursive comparison, working on primitive types, arrays, objects, regular expressions, dates and functions.
categories:
- assert
redirect_from:
- "/deepEqual"
- "/deepEqual/"
---

## `deepEqual( actual, expected [, message ] )`
Expand Down
3 changes: 3 additions & 0 deletions docs/assert/equal.md
Expand Up @@ -4,6 +4,9 @@ title: equal
description: A non-strict comparison.
categories:
- assert
redirect_from:
- "/equal"
- "/equal/"
---

## `equal( actual, expected [, message ] )`
Expand Down
3 changes: 3 additions & 0 deletions docs/assert/expect.md
Expand Up @@ -4,6 +4,9 @@ title: expect
description: Specify how many assertions are expected to run within a test.
categories:
- assert
redirect_from:
- "/expect"
- "/expect/"
---

## `expect( amount )`
Expand Down
3 changes: 3 additions & 0 deletions docs/assert/notDeepEqual.md
Expand Up @@ -4,6 +4,9 @@ title: notDeepEqual
description: An inverted deep recursive comparison, working on primitive types, arrays, objects, regular expressions, dates and functions.
categories:
- assert
redirect_from:
- "/notDeepEqual"
- "/notDeepEqual/"
---

## `notDeepEqual( actual, expected [, message ] )`
Expand Down
3 changes: 3 additions & 0 deletions docs/assert/notEqual.md
Expand Up @@ -4,6 +4,9 @@ title: notEqual
description: A non-strict comparison, checking for inequality.
categories:
- assert
redirect_from:
- "/notEqual"
- "/notEqual/"
---

## `notEqual( actual, expected [, message ] )`
Expand Down
3 changes: 3 additions & 0 deletions docs/assert/notStrictEqual.md
Expand Up @@ -4,6 +4,9 @@ title: notStrictEqual
description: A strict comparison, checking for inequality.
categories:
- assert
redirect_from:
- "/notStrictEqual"
- "/notStrictEqual/"
---

## `notStrictEqual( actual, expected [, message ] )`
Expand Down
3 changes: 3 additions & 0 deletions docs/assert/ok.md
Expand Up @@ -4,6 +4,9 @@ title: ok
description: A boolean check, equivalent to CommonJS's assert.ok() and JUnit's assertTrue(). Passes if the first argument is truthy.
categories:
- assert
redirect_from:
- "/ok"
- "/ok/"
---

## `ok( state [, message ] )`
Expand Down
3 changes: 3 additions & 0 deletions docs/assert/strictEqual.md
Expand Up @@ -4,6 +4,9 @@ title: strictEqual
description: A strict type and value comparison.
categories:
- assert
redirect_from:
- "/strictEqual"
- "/strictEqual/"
---

## `strictEqual( actual, expected [, message ] )`
Expand Down
3 changes: 3 additions & 0 deletions docs/assert/throws.md
Expand Up @@ -4,6 +4,9 @@ title: throws
description: Test if a callback throws an exception, and optionally compare the thrown error.
categories:
- assert
redirect_from:
- "/throws"
- "/throws/"
---

## `throws( blockFn[, expectedMatcher][, message ] )`
Expand Down
3 changes: 3 additions & 0 deletions docs/config/QUnit.dump.parse.md
Expand Up @@ -3,6 +3,9 @@ layout: default
categories: [config]
title: QUnit.dump.parse
description: Advanced and extensible data dumping for JavaScript
redirect_from:
- "/QUnit.dump.parse"
- "/QUnit.jsDump.parse"
---

## `QUnit.dump.parse( data )`
Expand Down