Skip to content

Commit

Permalink
add test for #37
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed Aug 30, 2019
1 parent 144e1c2 commit df7e4c7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/quote.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ test('quote', function (t) {
t.equal(quote(['><;{}']), '\\>\\<\\;\\{\\}');
t.equal(quote([ 'a', 1, true, false ]), 'a 1 true false');
t.equal(quote([ 'a', 1, null, undefined ]), 'a 1 null undefined');
t.equal(quote([ 'a\\x' ]), 'a\\\\x');
t.end();
});

Expand Down

0 comments on commit df7e4c7

Please sign in to comment.