aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdam Walker <[email protected]>2021-05-19 22:59:53 -0400
committerAdam Walker <[email protected]>2021-05-19 22:59:53 -0400
commitc0a172dc5d6308731fd879db2ffcddf4714370f5 (patch)
tree8e261554166973f3d60709b800f0278f513aa1b0 /test
parent45204bec008229f5b281ca5fdff0a25aece706a5 (diff)
downloadfaker-c0a172dc5d6308731fd879db2ffcddf4714370f5.tar.xz
faker-c0a172dc5d6308731fd879db2ffcddf4714370f5.zip
Revert formatting changes to lib/index.js made by prettier
Diffstat (limited to 'test')
-rw-r--r--test/word.unit.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/word.unit.js b/test/word.unit.js
index 071b6cfd..9a0c53a5 100644
--- a/test/word.unit.js
+++ b/test/word.unit.js
@@ -17,12 +17,12 @@ describe.only("word.js", function () {
// Perform the same three tests for each method.
methods.forEach(function (method) {
describe(method + "()", function () {
- it("returns random value from " + method + " array", function () {
+ it("returns random value from " + method + " array", function () {
var word = faker.word[method]();
assert.ok(faker.definitions.word[method].includes(word));
});
it("optional length parameter returns expected result", function () {
- var wordLength = parseInt(Math.random() * 7 + 3);
+ var wordLength = 5;
var word = faker.word[method](wordLength);
assert.ok(faker.definitions.word[method].includes(word));
assert.ok(word.length == wordLength);