Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "api/utils/utils-shared-data"

Index

Functions

Functions

clear

  • clear(): void
  • Deletes all shared data.

    Returns void

load

  • load(key: string): any
  • Loads previously saved object.

    Parameters

    • key: string

    Returns any

save

  • save(key: string, value: any): void
  • Saves some object to share it between tests. If an object with the specified key already exist, it is replaced.

    Parameters

    • key: string
    • value: any

    Returns void