feat: 초기 프로젝트 설정 및 룰.md 파일 추가
This commit is contained in:
25
api.hyungi.net/node_modules/tx2/test/issue.mocha.js
generated
vendored
Normal file
25
api.hyungi.net/node_modules/tx2/test/issue.mocha.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
const tx2 = require('..')
|
||||
const should = require('should')
|
||||
|
||||
describe('Issue', function() {
|
||||
it('should trigger an issue', (done) => {
|
||||
tx2.once('data', (dt) => {
|
||||
should(dt.type).eql('process:exception')
|
||||
should(dt.stack).not.eql(null)
|
||||
done()
|
||||
})
|
||||
|
||||
tx2.issue(new Error('shit happens'))
|
||||
})
|
||||
|
||||
it('should trigger an issue v2', (done) => {
|
||||
tx2.once('data', (dt) => {
|
||||
should(dt.type).eql('process:exception')
|
||||
should(dt.stack).not.eql(null)
|
||||
done()
|
||||
})
|
||||
|
||||
tx2.issue('shit happens')
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user