export const expectContainAll = function ( actual: string[], expected: string[] ) { expected.forEach((exp) => expect(actual).toContain(exp)); }; export const expectNotContainAny = function ( actual: string[], expected: string[] ) { expected.forEach((exp) => expect(actual).not.toContain(exp)); };