encrypted-attr
Version:
Encrypted model attributes in your favourite ORM.
30 lines (24 loc) • 484 B
JavaScript
const standard = require('mocha-standard')
describe('code style', function () {
this.timeout(5000)
it('should conform to standard', standard.files([
'lib/**/*.js',
'*.js'
]))
})
describe('code style in tests', function () {
this.timeout(5000)
it('should conform to standard', standard.files([
'test/**/*.js'
], {
globals: [
'describe',
'it',
'before',
'beforeEach',
'after',
'afterEach'
]
}))
})