Skip to content

Commit

Permalink
fix: table names with underscores cannot be loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Woodcock committed Aug 11, 2020
1 parent 5333490 commit 7aadf55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/schema/jFixturesSchema.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as Joi from '@hapi/joi';

export const jFixturesSchema = Joi.object().keys({
entity: Joi.string().alphanum().min(1).required(),
entity: Joi.string().min(1).required(),
parameters: Joi.object(),
processor: Joi.string(),
items: Joi.object().required(),
Expand Down

0 comments on commit 7aadf55

Please sign in to comment.