Skip to content

Commit

Permalink
fix: nut needs an org
Browse files Browse the repository at this point in the history
  • Loading branch information
shetzel committed Nov 1, 2024
1 parent 1563e12 commit 6dddb61
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/nut/agent-test-run.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,15 @@ let testSession: TestSession;

describe('agent test run NUTs', () => {
before('prepare session', async () => {
testSession = await TestSession.create();
testSession = await TestSession.create({
devhubAuthStrategy: 'AUTO',
scratchOrgs: [
{
edition: 'developer',
setDefault: true,
},
],
});
});

after(async () => {
Expand Down

0 comments on commit 6dddb61

Please sign in to comment.