UNPKG

327 BJavaScriptView Raw
1/**
2 * Test case for textElm.
3 * Runs with mocha.
4 */
5'use strict'
6
7const textElm = require('../lib/element/text_elm.js')
8const assert = require('assert')
9
10
11describe('text-elm', () => {
12 before(async () => {
13
14 })
15
16 after(async () => {
17
18 })
19
20 it('Text elm', async () => {
21
22 })
23})
24
25/* global describe, before, after, it */