UNPKG

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