We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7661e6a commit a4d756fCopy full SHA for a4d756f
packages/ethernaut-optigov/test/tasks/setAgoraKey.test.js
@@ -53,15 +53,13 @@ describe('setAgoraKey task', function () {
53
)
54
55
// Verify the output contains the new key and the restart message.
56
- console.log('#######', result)
57
-
58
assert(result.includes(`- Agora API Key set to ${testKey}`))
59
- // assert(
60
- // result.includes(
61
- // 'Please restart the tool for the new API key to take effect.',
62
- // ),
63
- // )
+ assert(
+ result.includes(
+ 'Please restart the tool for the new API key to take effect.',
+ ),
+ )
64
// Also verify process.env was updated
65
- // assert.strictEqual(process.env.AGORA_API_KEY, testKey)
+ assert.strictEqual(process.env.AGORA_API_KEY, testKey)
66
})
67
0 commit comments