Workflow funktioniert nun wieder. Es gab Probleme nach Aenderungen.
Build and Publish Site / docker (push) Successful in 23s
Build and Publish Site / docker (push) Successful in 23s
ABER: Die Applikation funktioniert nur lokal. Die deployte Version geht noch nicht.
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
/* global test, expect */
|
||||
'use strict'
|
||||
|
||||
const build = require('..')
|
||||
|
||||
test('works with jest', done => {
|
||||
const { create, emit, emitted } = build()
|
||||
|
||||
create('FastifyDeprecation', 'CODE', 'Hello %s')
|
||||
emit('CODE', 'world')
|
||||
|
||||
// we cannot actually listen to process warning event
|
||||
// because jest messes with it (that's the point of this test)
|
||||
// we can only test it was emitted indirectly
|
||||
// and test no exception is raised
|
||||
setImmediate(() => {
|
||||
expect(emitted.get('CODE')).toBeTruthy()
|
||||
done()
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user