We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3753ebb commit 92f6e6bCopy full SHA for 92f6e6b
test/suite/integration/probs.config.js
@@ -9,7 +9,10 @@ const PROJECT_STORE_TIMEOUT = 10000;
9
*/
10
const prepDevice = async (device) => {
11
await device.connect();
12
- await device.stopScript()
+
13
+ await pymakr.commands.safeBootDevice({ device });
14
+ // TODO timeout here should not be required. High priority!
15
+ await new Promise((resolve) => setTimeout(resolve, 500));
16
await pymakr.commands.eraseDevice({ device });
17
await device.disconnect();
18
};
0 commit comments