test("returns 'category=array' at the end of the string when passed 2 as category", () => {
      expected = "tag=test,tag=word,category=array";
      config.category = 2;
      result = subject(words, config);
      expect(result).toStrictEqual(expected);