You can combine using sets as stated in this answer with checking length of actual result and expectation. This will ignore element position and protect you from duplicated elements in the same time.
expect(
new Set(['pink wool', 'diorite'])
).toEqual(
new Set(['diorite', 'pink wool'])
);