Type Alias FileStorageTestSuiteSettings

FileStorageTestSuiteSettings: {
    beforeEach: typeof beforeEach;
    createFileStorage: () => Promisable<
        { fileStorage: IFileStorage; serde: ISerde },
    >;
    describe: SuiteAPI;
    excludeEventTests?: boolean;
    excludeSerdeTests?: boolean;
    expect: ExpectStatic;
    test: TestAPI;
}

IMPORT_PATH: "@daiso-tech/core/file-storage/test-utilities"

Type declaration

  • beforeEach: typeof beforeEach
  • createFileStorage: () => Promisable<{ fileStorage: IFileStorage; serde: ISerde }>
  • describe: SuiteAPI
  • OptionalexcludeEventTests?: boolean
    false
    
  • OptionalexcludeSerdeTests?: boolean
    false
    
  • expect: ExpectStatic
  • test: TestAPI