UNPKG

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