* 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
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import { labelling } from '../../utils/labelling';
|
|
|
|
describe('labelling', () => {
|
|
test('should label properly', () => {
|
|
expect(labelling('createdAt')).toEqual('Created At');
|
|
});
|
|
});
|