diff --git a/test/runes.js b/test/runes.js index da92bd5..c0ff92d 100644 --- a/test/runes.js +++ b/test/runes.js @@ -128,3 +128,11 @@ test('โœ‚๏ธ substring', (t) => { t.deepEqual(substring('๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘งabc', 1), 'abc') t.deepEqual(substring('๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘งabcd', 2), 'bcd') }) + +test('โœ‚๏ธ Runes should handle โš0๐ŸŒˆ', (t) => { + t.deepEqual(runes('โš0๐ŸŒˆ'), ['โš', '0', '๐ŸŒˆ']) +}) + +test('โœ‚๏ธ Runes should handle ๐Ÿ‡น๐Ÿ‡ผ', (t) => { + t.deepEqual(runes('๐Ÿ‡น๐Ÿ‡ผ'), ['๐Ÿ‡น๐Ÿ‡ผ']) +}) \ No newline at end of file