interface IUpdateablePropertyTest {
    getProperties(): Promise<any>;
    updateProperties(newProps: Record<string, any>): Promise<any>;
}

Implemented by

Methods

  • Gets the test's properties

    Returns Promise<any>

  • Updates the test with new values.

    Parameters

    • newProps: Record<string, any>

      Object with new properties to use

    Returns Promise<any>