From c99c0f8483c652b2b3576dfd0fd572e90cdacd2b Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Wed, 27 Jun 2018 08:33:37 +0200 Subject: [PATCH] test(js) Fix file permissions, and update a comment. --- src/js.rs | 7 ++++--- tests/all/js_globals/Array.rs | 0 tests/all/js_globals/Object.rs | 0 3 files changed, 4 insertions(+), 3 deletions(-) mode change 100755 => 100644 tests/all/js_globals/Array.rs mode change 100755 => 100644 tests/all/js_globals/Object.rs diff --git a/src/js.rs b/src/js.rs index 6ece49ac3..6ba627cfd 100644 --- a/src/js.rs +++ b/src/js.rs @@ -35,9 +35,10 @@ if_std! { // * If a function or method can throw an exception, make it catchable by adding // `#[wasm_bindgen(catch)]`. // -// * Add a new `#[test]` to the `tests/all/js_globals.rs` file. If the imported -// function or method can throw an exception, make sure to also add test -// coverage for that case. +// * Add a new `#[test]` into the appropriate file in the +// `tests/all/js_globals/` directory. If the imported function or +// method can throw an exception, make sure to also add test coverage +// for that case. #[wasm_bindgen] extern { diff --git a/tests/all/js_globals/Array.rs b/tests/all/js_globals/Array.rs old mode 100755 new mode 100644 diff --git a/tests/all/js_globals/Object.rs b/tests/all/js_globals/Object.rs old mode 100755 new mode 100644