diff --git a/test/fixtures.js b/test/fixtures.js index 5b62db1..0319f0f 100644 --- a/test/fixtures.js +++ b/test/fixtures.js @@ -1,40 +1,86 @@ -module.exports = [{ +module.exports = [ + { fakerMethod: 'address', output: ['country', 'city', 'province'] -},{ + }, + { + fakerMethod: 'animal', + output: ['bear', 'fish', 'butterfly'] + }, + { + fakerMethod: 'color', + output: ['human', 'rgb', 'blue'] + }, + { + fakerMethod: 'commerce', + output: ['department', 'productName', 'employee'] + }, + { fakerMethod: 'company', output: ['bsNoun', 'bsBuzz', 'startups'] -},{ + }, + { + fakerMethod: 'database', + output: ['column', 'engine', 'structure'] + }, + { + fakerMethod: 'datatype', + output: ['string', 'uuid', 'binary'] + }, + { fakerMethod: 'date', output: ['past', 'future', 'calendar'] -},{ + }, + { fakerMethod: 'finance', output: ['accountName', 'mask', 'investors'] -},{ + }, + { + fakerMethod: 'git', + output: ['commitMessage', 'shortSha', 'tag'] + }, + { + fakerMethod: 'hacker', + output: ['noun', 'phrase', 'exploits'] + }, + { + fakerMethod: 'image', + output: ['avatar', 'sports', 'filter'] + }, + { fakerMethod: 'internet', output: ['avatar', 'userName', 'protocols'] -},{ + }, + { + fakerMethod: 'lorem', + output: ['words', 'sentence', 'ipsum'] + }, + { + fakerMethod: 'music', + output: ['genre', 'songName', 'lyrics'] + }, + { fakerMethod: 'name', output: ['firstName', 'prefix', 'surname'] -},{ + }, + { fakerMethod: 'phone', output: ['phoneNumber', 'phoneNumberFormat', 'emergency'] -},{ + }, + { fakerMethod: 'random', - output: ['uuid', 'word', 'checks'] -},{ - fakerMethod: 'hacker', - output: ['noun', 'phrase', 'exploits'] -},{ - fakerMethod: 'helpers', - output: ['userCard', 'createTransaction', 'halp'] -},{ - fakerMethod: 'helpers', - output: ['userCard', 'createTransaction', 'halp'] -},{ - fakerMethod: 'image', - output: ['avatar', 'sports', 'filter'] -},{ - fakerMethod: 'lorem', - output: ['words', 'sentence', 'ipsum'] -}]; + output: ['alpha', 'word', 'checks'] + }, + { + fakerMethod: 'system', + output: ['fileName', 'semver', 'clock'] + }, + { + fakerMethod: 'vehicle', + output: ['bicycle', 'model', 'transporter'] + }, + { + fakerMethod: 'word', + output: ['conjunction', 'noun', 'count'] + }, +];