@wpazderski/playwright-utils
    Preparing search index...
    stringContaining: typeof stringContaining

    expect.stringContaining() matches a string that contains the expected substring. Use this method inside expect(value).toEqual(expected) to perform pattern matching.

    Usage

    expect('Hello world!').toEqual(expect.stringContaining('Hello'));
    

    Expected substring.