4
0
Fork 0
mirror of https://github.com/actions/setup-go.git synced 2025-11-13 15:13:46 +00:00
setup-go/node_modules/optimist/test/whitespace.js
Stephen Franceschelli a966e84ff9 Fix.
2019-07-30 13:30:32 -04:00

8 lines
207 B
JavaScript

var optimist = require('../');
var test = require('tap').test;
test('whitespace should be whitespace' , function (t) {
t.plan(1);
var x = optimist.parse([ '-x', '\t' ]).x;
t.equal(x, '\t');
});