test("returns no category in the string when passed a number greater than words length", () => {
      expected = "tag=test,tag=word,tag=array";
      config.category = 7;
      result = subject(words, config);
      expect(result).toStrictEqual(expected);