-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2757 from simlu/dev
Dev
- Loading branch information
Showing
4 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import * as lambdaMonitor from 'lambda-monitor'; | ||
import lambdaMonitor from 'lambda-monitor'; | ||
|
||
export const batcherHandler = lambdaMonitor.batcherHandler; | ||
export const bundlerHandler = lambdaMonitor.bundlerHandler; | ||
export const processLogs = lambdaMonitor.processLogs; | ||
export const subscribe = lambdaMonitor.subscribe; | ||
export const emptyBucket = lambdaMonitor.emptyBucket; | ||
export const batcherHandler = lambdaMonitor.exports.batcherHandler; | ||
export const bundlerHandler = lambdaMonitor.exports.bundlerHandler; | ||
export const processLogs = lambdaMonitor.exports.processLogs; | ||
export const subscribe = lambdaMonitor.exports.subscribe; | ||
export const emptyBucket = lambdaMonitor.exports.emptyBucket; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import { expect } from 'chai'; | ||
import index from '../src/index.js'; | ||
import * as index from '../src/index.js'; | ||
|
||
describe('Testing index.js', () => { | ||
it('Testing Exports', () => { | ||
expect(Object.keys(index)).to.deep.equal([ | ||
'batcherHandler', | ||
'bundlerHandler', | ||
'emptyBucket', | ||
'processLogs', | ||
'subscribe', | ||
'emptyBucket' | ||
'subscribe' | ||
]); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import * as lambdaMonitor from 'lambda-monitor'; | ||
import lambdaMonitor from 'lambda-monitor'; | ||
|
||
export const batcherHandler = lambdaMonitor.batcherHandler; | ||
export const bundlerHandler = lambdaMonitor.bundlerHandler; | ||
export const processLogs = lambdaMonitor.processLogs; | ||
export const subscribe = lambdaMonitor.subscribe; | ||
export const emptyBucket = lambdaMonitor.emptyBucket; | ||
export const batcherHandler = lambdaMonitor.exports.batcherHandler; | ||
export const bundlerHandler = lambdaMonitor.exports.bundlerHandler; | ||
export const processLogs = lambdaMonitor.exports.processLogs; | ||
export const subscribe = lambdaMonitor.exports.subscribe; | ||
export const emptyBucket = lambdaMonitor.exports.emptyBucket; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import { expect } from 'chai'; | ||
import index from '../src/index.js'; | ||
import * as index from '../src/index.js'; | ||
|
||
describe('Testing index.js', () => { | ||
it('Testing Exports', () => { | ||
expect(Object.keys(index)).to.deep.equal([ | ||
'batcherHandler', | ||
'bundlerHandler', | ||
'emptyBucket', | ||
'processLogs', | ||
'subscribe', | ||
'emptyBucket' | ||
'subscribe' | ||
]); | ||
}); | ||
}); |