NeuraLegion/cypress-har-generator

View on GitHub
src/network/NetworkObserverOptions.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface NetworkObserverOptions {
  content?: boolean;
  excludePaths?: (string | RegExp)[];
  includeHosts?: (string | RegExp)[];
  includeMimes?: string[];
  excludeStatusCodes?: number[];
  /**
   * @deprecated As of version 6, this field will be removed. Use {@link excludeStatusCodes} instead.
   */
  minStatusCodeToInclude?: number;
  /**
   * @deprecated As of version 6, this flag will be disabled by default.
   */
  includeBlobs?: boolean;
}