Searched refs:extractAsync (Results 1 – 4 of 4) sorted by relevance
5 import { extractAsync } from '../tar';17 describe(extractAsync, () => {37 await extractAsync('./template.tgz', './output');53 await extractAsync('./template.tgz', './output');63 await extractAsync('./template.tgz', './output');
7 import { extractAsync } from '../tar';18 extractAsync: jest.fn(),61 asMock(extractAsync).mockImplementationOnce(jest.fn());97 expect(extractAsync).toHaveBeenCalledWith('/tmp/Exponent-2.23.2.tar.app', generatedOutput);129 expect(extractAsync).toHaveBeenCalledTimes(0);
9 import { extractAsync } from './tar';77 await extractAsync(tmpPath, outputPath);
9 export async function extractAsync(input: string, output: string): Promise<void> { function