Skip to main content

MockDirectoryContentOptions

Home > @backstage/backend-test-utils > MockDirectoryContentOptions

Options for MockDirectory.content().

Signature:

export interface MockDirectoryContentOptions 

Properties

PropertyModifiersTypeDescription
path?string

(Optional) The path to read content from. Defaults to the root of the mock directory.

An absolute path can also be provided, as long as it is a child path of the mock directory.

shouldReadAsText?boolean | ((path: string, buffer: Buffer) => boolean)

(Optional) Whether or not to return files as text rather than buffers.

Defaults to checking the file extension against a list of known text extensions.