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 eb32ccc commit 5ceb09cCopy full SHA for 5ceb09c
test/e2e/commands/cluster.test.ts
@@ -72,14 +72,17 @@ describe('ClusterCommand', () => {
72
} while (!await chartManager.isChartInstalled(constants.SOLO_SETUP_NAMESPACE, constants.SOLO_CLUSTER_SETUP_CHART))
73
})
74
75
- beforeEach(() => configManager.reset())
+ beforeEach(() => {
76
+ configManager.reset()
77
+ configManager.update(argv)
78
+ })
79
80
// give a few ticks so that connections can close
81
afterEach(async () => await sleep(5))
82
83
it('should cleanup existing deployment', async () => {
84
if (await chartManager.isChartInstalled(constants.SOLO_SETUP_NAMESPACE, constants.SOLO_CLUSTER_SETUP_CHART)) {
- await expect(clusterCmd.reset(argv)).to.be.ok
85
+ await expect(clusterCmd.reset(argv)).to.eventually.be.ok
86
}
87
}).timeout(MINUTES)
88
0 commit comments