mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Cleanup debugging code from test again
This commit is contained in:
parent
056a1963e3
commit
fce7550609
4 changed files with 4 additions and 24 deletions
|
|
@ -120,7 +120,7 @@ export class DockerTestContainer {
|
|||
console.log("Command timeout reached");
|
||||
resolve({ allData, output: parseShellOutput(allData), command });
|
||||
ptyProcess.removeListener("data", handleInput);
|
||||
}, 20000);
|
||||
}, 15000);
|
||||
|
||||
function handleInput(data) {
|
||||
allData.push(data);
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"version": "1.0.0",
|
||||
"description": "End-to-end tests for the Aikido Safe Chain",
|
||||
"scripts": {
|
||||
"test": "node --test --test-concurrency=1 **/safe-chain-proxy.e2e.spec.js"
|
||||
"test": "node --test --test-concurrency=1 **/*.spec.js"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "Aikido Security",
|
||||
|
|
|
|||
|
|
@ -14,8 +14,8 @@ describe("E2E: Safe chain proxy", () => {
|
|||
container = new DockerTestContainer();
|
||||
await container.start();
|
||||
|
||||
// const installationShell = await container.openShell("zsh");
|
||||
// await installationShell.runCommand("safe-chain setup");
|
||||
const installationShell = await container.openShell("zsh");
|
||||
await installationShell.runCommand("safe-chain setup");
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue