Skip to content
Permalink
8d14cd4781
Go to file
 
 
Cannot retrieve contributors at this time
26 lines (25 sloc) 671 Bytes
import * as Util from '../src'
import * as context from '../src/context'
import * as lang from '../src/lang'
import * as locking from '../src/locking'
import * as resolve from '../src/resolve'
import * as route from '../src/route'
import * as serialize from '../src/serialize'
import * as task from '../src/task'
import * as timer from '../src/timer'
import * as cjs from '../src/cjs'
describe('util: entry', () => {
test('should export all methods from utils folder', () => {
expect(Util).toEqual({
...context,
...lang,
...locking,
...resolve,
...route,
...serialize,
...task,
...timer,
...cjs
})
})
})
You can’t perform that action at this time.