Skip to content

Commit

Permalink
chore: temporarily disable op_require_read_file (denoland#15433)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Aug 9, 2022
1 parent 1c2ec1f commit d6f789e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions cli/tests/integration/compat_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ fn native_modules_as_global_vars() {
assert!(out.contains("true"));
}

#[ignore] // todo(dsherret): re-enable
#[test]
fn ext_node_cjs_execution() {
let (out, _err) = util::run_and_collect_output_with_args(
Expand Down
2 changes: 1 addition & 1 deletion ext/node/01_require.js
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@
if (typeof options === "object" && options !== null) {
if (ArrayIsArray(options.paths)) {
const isRelative = core.opSync(
"op_require_specifier_is_relative",
"op_require_is_request_relative",
request,
);

Expand Down
5 changes: 2 additions & 3 deletions ext/node/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,6 @@ fn op_require_try_self(
}

#[op]
fn op_require_read_file(filename: String) -> Result<String, AnyError> {
let contents = std::fs::read_to_string(filename)?;
Ok(contents)
fn op_require_read_file(_filename: String) -> Result<String, AnyError> {
todo!("not implemented");
}

0 comments on commit d6f789e

Please sign in to comment.