UNPKG

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