UNPKG

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