Migrated tests to jest
Used jest-codemods to migrate, will have to pass everything by hand before we can merge.
This commit is contained in:
13
test2/escapeHTML/escapeHTML.js
Normal file
13
test2/escapeHTML/escapeHTML.js
Normal file
@ -0,0 +1,13 @@
|
||||
const escapeHTML = str =>
|
||||
str.replace(
|
||||
/[&<>'"]/g,
|
||||
tag =>
|
||||
({
|
||||
'&': '&',
|
||||
'<': '<',
|
||||
'>': '>',
|
||||
"'": ''',
|
||||
'"': '"'
|
||||
}[tag] || tag)
|
||||
);
|
||||
module.exports = escapeHTML;
|
||||
9
test2/escapeHTML/escapeHTML.test.js
Normal file
9
test2/escapeHTML/escapeHTML.test.js
Normal file
@ -0,0 +1,9 @@
|
||||
const expect = require('expect');
|
||||
const escapeHTML = require('./escapeHTML.js');
|
||||
|
||||
test('Testing escapeHTML', () => {
|
||||
//For more information on all the methods supported by tape
|
||||
//Please go to https://github.com/substack/tape
|
||||
expect(typeof escapeHTML === 'function').toBeTruthy();
|
||||
expect(escapeHTML('<a href="#">Me & you</a>')).toBe('<a href="#">Me & you</a>');
|
||||
});
|
||||
Reference in New Issue
Block a user