UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.

29 lines 969 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const validate_1 = require("../validate"); test('eventSchema', () => { const data = { id: 899, type: 'feature-created', createdBy: 'user@company.com', createdAt: '2022-05-31T13:32:20.560Z', data: { name: 'new-feature', description: 'Toggle description', type: 'release', project: 'my-project', stale: false, variants: [], createdAt: '2022-05-31T13:32:20.547Z', lastSeenAt: null, impressionData: true, }, preData: null, tags: [{ type: 'simple', value: 'my-val' }], featureName: 'new-feature', project: 'my-project', environment: null, }; expect((0, validate_1.validateSchema)('#/components/schemas/eventSchema', data)).toBeUndefined(); }); //# sourceMappingURL=event-schema.test.js.map