mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
15 lines
222 B
JavaScript
15 lines
222 B
JavaScript
Deno.test({
|
|
name: "unresolved promise",
|
|
fn() {
|
|
return new Promise((_resolve, _reject) => {
|
|
console.log("in promise");
|
|
});
|
|
},
|
|
});
|
|
|
|
Deno.test({
|
|
name: "ok",
|
|
fn() {
|
|
console.log("ok test");
|
|
},
|
|
});
|