mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
chore: move test_ffi and test_nap to tests/ [WIP] (#22394)
Moving some additional NAPI and. FFI tests out of the tree root.
This commit is contained in:
parent
bd1358efab
commit
f60720090c
71 changed files with 66 additions and 24 deletions
17
tests/napi/date_test.js
Normal file
17
tests/napi/date_test.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
||||
|
||||
import { assertEquals, loadTestLibrary } from "./common.js";
|
||||
|
||||
const date = loadTestLibrary();
|
||||
|
||||
Deno.test("napi date", function () {
|
||||
const dateTypeTestDate = date.createDate(1549183351);
|
||||
assertEquals(date.isDate(dateTypeTestDate), true);
|
||||
assertEquals(date.isDate(new Date(1549183351)), true);
|
||||
assertEquals(date.isDate(2.4), false);
|
||||
assertEquals(date.isDate("not a date"), false);
|
||||
assertEquals(date.isDate(undefined), false);
|
||||
assertEquals(date.isDate(null), false);
|
||||
assertEquals(date.isDate({}), false);
|
||||
assertEquals(date.getDateValue(new Date(1549183351)), 1549183351);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue