UNPKG

363 BJavaScriptView Raw
1/**
2 * Test case for apDialogBody.
3 * Runs with mocha.
4 */
5"use strict";
6
7const apDialogBody = require('../lib/ap_dialog_body.js'),
8 assert = require('assert');
9
10describe('ap-dialog-body', () => {
11
12 before((done) => {
13 done();
14 });
15
16 after((done) => {
17 done();
18 });
19
20
21 it('Ap dialog body', (done) => {
22 done();
23 });
24});
25