mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
11 lines
336 B
JavaScript
11 lines
336 B
JavaScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { assert, loadTestLibrary } from "./common.js";
|
|
|
|
const mem = loadTestLibrary();
|
|
|
|
Deno.test("napi adjust external memory", function () {
|
|
const adjusted = mem.adjust_external_memory();
|
|
assert(typeof adjusted === "number");
|
|
assert(adjusted > 0);
|
|
});
|