()
| 4 | Deno.test({ |
| 5 | name: "assertNotInstanceOf()", |
| 6 | fn() { |
| 7 | assertNotInstanceOf("not a number", Number); |
| 8 | assertNotInstanceOf(42, String); |
| 9 | assertNotInstanceOf(new URL("http://example.com"), Boolean); |
| 10 | }, |
| 11 | }); |
| 12 | |
| 13 | Deno.test({ |
nothing calls this directly
no test coverage detected