forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(std/node): misnamed assert exports (denoland/deno#7123)
- Loading branch information
1 parent
fbc4273
commit 03e3ab6
Showing
4 changed files
with
147 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import { | ||
assert as denoAssert, | ||
assertEquals, | ||
assertNotEquals, | ||
assertStrictEquals, | ||
assertNotStrictEquals, | ||
assertMatch, | ||
assertThrows, | ||
fail as denoFail, | ||
} from "../testing/asserts.ts"; | ||
|
||
import assert from "./assert.ts"; | ||
|
||
import { | ||
ok, | ||
assert as assert_, | ||
deepStrictEqual, | ||
notDeepStrictEqual, | ||
strictEqual, | ||
notStrictEqual, | ||
match, | ||
throws, | ||
fail, | ||
} from "./assert.ts"; | ||
|
||
Deno.test("API should be exposed", () => { | ||
assertStrictEquals( | ||
assert_, | ||
assert, | ||
"`assert()` should be the default export", | ||
); | ||
assertStrictEquals(assert_, denoAssert, "`assert()` should be exposed"); | ||
assertStrictEquals(assert_, ok, "`assert()` should be an alias of `ok()`"); | ||
assertStrictEquals( | ||
assertEquals, | ||
deepStrictEqual, | ||
"`assertEquals()` should be exposed as `deepStrictEqual()`", | ||
); | ||
assertStrictEquals( | ||
assertNotEquals, | ||
notDeepStrictEqual, | ||
"`assertNotEquals()` should be exposed as `notDeepStrictEqual()`", | ||
); | ||
assertStrictEquals( | ||
assertStrictEquals, | ||
strictEqual, | ||
"`assertStrictEquals()` should be exposed as `strictEqual()`", | ||
); | ||
assertStrictEquals( | ||
assertNotStrictEquals, | ||
notStrictEqual, | ||
"`assertNotStrictEquals()` should be exposed as `notStrictEqual()`", | ||
); | ||
assertStrictEquals( | ||
assertMatch, | ||
match, | ||
"`assertMatch()` should be exposed as `match()`", | ||
); | ||
assertStrictEquals( | ||
assertThrows, | ||
throws, | ||
"`assertThrows()` should be exposed as `throws()`", | ||
); | ||
assertStrictEquals(fail, denoFail, "`fail()` should be exposed"); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters