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