UNPKG

406 BJavaScriptView Raw
1/**
2 * Test case for apPaperPhotoStyle.
3 * Runs with mocha.
4 */
5'use strict'
6
7const ApPaperPhotoStyle = require('../lib/ap_paper_photo_style.js').default
8const assert = require('assert')
9
10describe('ap-paper-photo-style', () => {
11 before((done) => {
12 done()
13 })
14
15 after((done) => {
16 done()
17 })
18
19 it('Ap paper photo style', (done) => {
20 done()
21 })
22})
23
24/* global describe, before, after, it */