Page Contents

Home > @loopback/testlab > TestSandbox > copyFile

TestSandbox.copyFile() method

Copies a file from src to the TestSandbox. If copying a .js file which has an accompanying .js.map file in the src file location, the dest file will have its sourceMappingURL updated to point to the original file as an absolute path so you don’t need to copy the map file.

Signature:

copyFile(src: string, dest?: string, transform?: (content: string) => string): Promise<void>;

Parameters

Parameter Type Description
src string Absolute path of file to be copied to the TestSandbox
dest string (Optional) Optional. Destination filename of the copy operation (relative to TestSandbox). Original filename used if not specified.
transform (content: string) => string (Optional) Optional. A function to transform the file content.

Returns:

Promise<void>