Skip to content

Commit

Permalink
tests: disable "auth user interactive" getting SIGSEGV
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericosilva committed Nov 17, 2022
1 parent a801be7 commit cf25e71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli-device-node/tests/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ test('auth aws', withTemp(withVariable(['aws-access-key', 'aws-secret-key'], asy
t.true(me.sub.includes('https://sts.amazonaws.com/'));
})));

test('auth user interactive', withTemp(withVariable(['username', 'password'], async (t, tmpDir, username, password) => {
//Temporary skip this test, failing with Command failed with signal "SIGSEGV"
test.skip('auth user interactive', withTemp(withVariable(['username', 'password'], async (t, tmpDir, username, password) => {
const options = { env: { HOME: tmpDir } };
const output = await runPty('h1 auth user', [username, password].map(x => `${x}\r`), options);
t.true(output.includes('Token successfully updated.'));
Expand Down

1 comment on commit cf25e71

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use following links to download pre-compiled binary:

Please sign in to comment.