-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.js
35 lines (30 loc) · 794 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* Access to the SequelizeMocking lib
*
* @module lib/index
* @exports SequelizeMockingLib
* @version 1.0.0
* @since 0.1.0
* @author Julien Roche
*/
'use strict';
Object.defineProperty(module.exports, 'SequelizeMocking', {
'get': function() {
return require('./lib/sequelize-mocking');
}
});
Object.defineProperty(module.exports, 'sequelizeMockingMocha', {
'get': function() {
return require('./lib/sequelize-mocking-mocha');
}
});
Object.defineProperty(module.exports, 'sequelizeMockingJasmine', {
'get': function() {
return require('./lib/sequelize-mocking-jasmine');
}
});
Object.defineProperty(module.exports, 'sequelizeMockingTape', {
'get': function() {
return require('./lib/sequelize-mocking-tape');
}
});