@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
24 lines • 964 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
import { HelmExecutionBuilder } from '../../../../../src/integration/helm/execution/helm-execution-builder.js';
import { expect } from 'chai';
describe('HelmExecutionBuilder', () => {
it('Test optionsWithMultipleValues null checks', () => {
const builder = new HelmExecutionBuilder();
expect(() => {
builder.optionsWithMultipleValues(null, null);
}).to.throw(Error);
expect(() => {
builder.optionsWithMultipleValues('test string', null);
}).to.throw(Error);
});
it('Test environmentVariable null checks', () => {
const builder = new HelmExecutionBuilder();
expect(() => {
builder.environmentVariable(null, null);
}).to.throw(Error);
expect(() => {
builder.environmentVariable('test string', null);
}).to.throw(Error);
});
});
//# sourceMappingURL=helm-execution-builder.test.js.map