Skip to content

Commit

Permalink
More tests
Browse files Browse the repository at this point in the history
  • Loading branch information
electerious committed Feb 25, 2020
1 parent 8bc2f08 commit 09557db
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/constants/durations.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'use strict'

const test = require('ava')

const durations = require('../../src/constants/durations')

test('is an object', async (t) => {

t.is(typeof durations, 'object')

})
11 changes: 11 additions & 0 deletions test/constants/languages.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'use strict'

const test = require('ava')

const languages = require('../../src/constants/languages')

test('is an object', async (t) => {

t.is(typeof languages, 'object')

})
11 changes: 11 additions & 0 deletions test/constants/pages.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'use strict'

const test = require('ava')

const pages = require('../../src/constants/pages')

test('is an object', async (t) => {

t.is(typeof pages, 'object')

})
11 changes: 11 additions & 0 deletions test/constants/sizes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'use strict'

const test = require('ava')

const sizes = require('../../src/constants/sizes')

test('is an object', async (t) => {

t.is(typeof sizes, 'object')

})
11 changes: 11 additions & 0 deletions test/constants/views.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'use strict'

const test = require('ava')

const views = require('../../src/constants/views')

test('is an object', async (t) => {

t.is(typeof views, 'object')

})

0 comments on commit 09557db

Please sign in to comment.