2248 zapier integration implement typeorm eventsubscribers (#3122)
* Add new queue to twenty-server * Add triggers to zapier * Rename webhook operation * Use find one or fail * Use logger * Fix typescript templating * Add dedicated call webhook job * Update logging * Fix error handling
This commit is contained in:
8
packages/twenty-zapier/src/test/utils/capitalize.test.ts
Normal file
8
packages/twenty-zapier/src/test/utils/capitalize.test.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { capitalize } from '../../utils/capitalize';
|
||||
|
||||
describe('capitalize', () => {
|
||||
test('should capitalize properly', () => {
|
||||
expect(capitalize('word')).toEqual('Word');
|
||||
expect(capitalize('word word')).toEqual('Word word');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user