mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
16 lines
222 B
JavaScript
16 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");
|
||
|
},
|
||
|
});
|