mirror of
https://github.com/tenrok/BBob.git
synced 2026-06-05 16:42:27 +03:00
initial
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
const Parser = require('./Parser');
|
||||
const TOKEN = require('./token');
|
||||
|
||||
describe("Parser", () => {
|
||||
test("parse paired tags tokens", () => {
|
||||
const parser = new Parser([
|
||||
[TOKEN.TYPE_TAG, 'ch'],
|
||||
[TOKEN.TYPE_TAG, '/ch']
|
||||
]);
|
||||
|
||||
})
|
||||
});
|
||||
Reference in New Issue
Block a user