fix: pass yarn ready tests

pull/2371/head
William Grant 3 years ago
parent d3d0ac80a0
commit dfb2c3e797

@ -39,9 +39,9 @@ textarea {
input, input,
textarea { textarea {
user-select: text; user-select: text;
a { a {
word-break: break-all; word-break: break-all;
} }
} }
} }

@ -689,6 +689,7 @@ async function saveDebugLog(_event: any, logText: any) {
if (result === undefined || outputPath === undefined || outputPath === '') { if (result === undefined || outputPath === undefined || outputPath === '') {
throw Error("User clicked Save button but didn't create a file"); throw Error("User clicked Save button but didn't create a file");
} }
// tslint:disable: non-literal-fs-path
fs.writeFile(outputPath, logText, err => { fs.writeFile(outputPath, logText, err => {
if (err) { if (err) {
throw Error(`${err}`); throw Error(`${err}`);
@ -696,9 +697,9 @@ async function saveDebugLog(_event: any, logText: any) {
console.info(`Saved log - ${outputPath}`); console.info(`Saved log - ${outputPath}`);
}); });
} catch (err) { } catch (err) {
console.error(`Error saving debug log`, err); console.error('Error saving debug log', err);
} }
}; }
// This method will be called when Electron has finished // This method will be called when Electron has finished
// initialization and is ready to create browser windows. // initialization and is ready to create browser windows.

Loading…
Cancel
Save