feat: Adds ability to edit out webhook URL of API Channel (#3013)

This commit is contained in:
Sivin Varghese 2021-09-28 12:33:08 +05:30 committed by GitHub
parent 15aaa8883c
commit 1761bec615
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 54 additions and 3 deletions

View file

@ -0,0 +1,7 @@
import { shouldBeUrl } from '../Validators';
describe('#shouldBeUrl', () => {
it('should return correct url', () => {
expect(shouldBeUrl('http')).toEqual(true);
});
});