Travis build: 1447 [cron]
This commit is contained in:
13
test/removeNonASCII/removeNonASCII.test.js
Normal file
13
test/removeNonASCII/removeNonASCII.test.js
Normal file
@ -0,0 +1,13 @@
|
||||
const test = require('tape');
|
||||
const removeNonASCII = require('./removeNonASCII.js');
|
||||
|
||||
test('Testing removeNonASCII', (t) => {
|
||||
//For more information on all the methods supported by tape
|
||||
//Please go to https://github.com/substack/tape
|
||||
t.true(typeof removeNonASCII === 'function', 'removeNonASCII is a Function');
|
||||
//t.deepEqual(removeNonASCII(args..), 'Expected');
|
||||
//t.equal(removeNonASCII(args..), 'Expected');
|
||||
//t.false(removeNonASCII(args..), 'Expected');
|
||||
//t.throws(removeNonASCII(args..), 'Expected');
|
||||
t.end();
|
||||
});
|
||||
Reference in New Issue
Block a user