mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-12 13:48:35 +02:00
12 lines
308 B
TypeScript
12 lines
308 B
TypeScript
import { tagSchema } from './tag-schema';
|
|
|
|
test('should require url friendly type if defined', () => {
|
|
const tag = {
|
|
value: 'io`dasd',
|
|
type: 'io`dasd',
|
|
};
|
|
|
|
const { error } = tagSchema.validate(tag);
|
|
expect(error.details[0].message).toEqual('"type" must be URL friendly');
|
|
});
|