mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
23 lines
656 B
TypeScript
23 lines
656 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { expect } from "./expect.ts";
|
|
import { AssertionError, assertThrows } from "@std/assert";
|
|
|
|
Deno.test("expect().toBeInstanceOf()", () => {
|
|
expect(new Error()).toBeInstanceOf(Error);
|
|
expect(new Error()).toBeInstanceOf(Object);
|
|
|
|
expect(new Error()).not.toBeInstanceOf(String);
|
|
|
|
assertThrows(() => {
|
|
expect(new Error()).toBeInstanceOf(String);
|
|
}, AssertionError);
|
|
|
|
assertThrows(() => {
|
|
expect(new Error()).not.toBeInstanceOf(Error);
|
|
}, AssertionError);
|
|
assertThrows(() => {
|
|
expect(new Error()).not.toBeInstanceOf(Object);
|
|
}, AssertionError);
|
|
});
|