[Test] Add a test

This commit is contained in:
syuilo 2017-03-01 14:29:02 +09:00
parent 9c7c7a956c
commit 93149de584
1 changed files with 48 additions and 41 deletions

View File

@ -19,6 +19,12 @@ describe('Text', () => {
], tokens);
});
it('逆関数で正しく復元できる', () => {
const text = '@himawari お腹ペコい :cat: #yryr';
assert.equal(analyze(text).map(x => x.content).join(''), text);
});
describe('elements', () => {
it('bold', () => {
const tokens = analyze('**Strawberry** Pasta');
assert.deepEqual([
@ -68,6 +74,7 @@ describe('Text', () => {
assert.equal(tokens[0].type, 'inline-code');
assert.equal(tokens[0].content, '`var x = "Strawberry Pasta";`');
});
});
describe('syntax highlighting', () => {
it('regexp', () => {