Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
Soremwar committed Feb 3, 2021
1 parent 27184ba commit 82a47d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion node/module_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ Deno.test("requireCycle", function () {
Deno.test("requireBuiltin", function () {
const fs = require("fs");
assert("readFileSync" in fs);
const { readFileSync, isNull, extname } = require("./_module/cjs/cjs_builtin");
const { readFileSync, isNull, extname } = require(
"./_module/cjs/cjs_builtin",
);

const testData = path.relative(
Deno.cwd(),
Expand Down

0 comments on commit 82a47d7

Please sign in to comment.