Skip to content

Commit

Permalink
Other: Restructured a few failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Mar 2, 2017
1 parent 367d555 commit 83142e4
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions tests/api_writer-reader.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ tape.test("writer & reader", function(test) {

test.ok(expect("fixed32", 4294967295, [ 255, 255, 255, 255 ]), "should write 4294967295 as fixed 32 bits");
test.ok(expect("fixed32", 4294967294, [ 254, 255, 255, 255 ]), "should write 4294967294 as fixed 32 bits");
test.ok(expect("fixed32", 4294967296, [ 0, 0, 0, 0 ]), "should write 4294967296 as fixed 32 bits (wrap around to 0)");
test.ok(expect("fixed32", 4294967297, [ 1, 0, 0, 0 ]), "should write 4294967297 as fixed 32 bits (wrap around to 1)");
test.ok(expect("sfixed32", -1, [ 255, 255, 255, 255 ]), "should write -1 as fixed 32 bits (signed)");
test.ok(expect("sfixed32", -2, [ 254, 255, 255, 255 ]), "should write -2 as fixed 32 bits (signed)");

Expand Down
1 change: 0 additions & 1 deletion tests/lib_utf8.js

This file was deleted.

2 changes: 1 addition & 1 deletion tests/node/lib_fetch.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
require("../../lib/fetch/tests");
require("../../lib/fetch/tests"); // requires fs
1 change: 1 addition & 0 deletions tests/node/lib_utf8.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require("../../lib/utf8/tests"); // requires fs to load the test file

0 comments on commit 83142e4

Please sign in to comment.