Check for secret_key and secret_value in CI Variable native list js spec

This commit is contained in:
Matija Čupić 2018-03-17 18:33:03 +01:00
parent 68c6e410bd
commit 67fc0a2b92
No known key found for this signature in database
GPG key ID: 4BAF84FFACD2E5DE

View file

@ -19,8 +19,8 @@ describe('NativeFormVariableList', () => {
describe('onFormSubmit', () => { describe('onFormSubmit', () => {
it('should clear out the `name` attribute on the inputs for the last empty row on form submission (avoid BE validation)', () => { it('should clear out the `name` attribute on the inputs for the last empty row on form submission (avoid BE validation)', () => {
const $row = $wrapper.find('.js-row'); const $row = $wrapper.find('.js-row');
expect($row.find('.js-ci-variable-input-key').attr('name')).toBe('schedule[variables_attributes][][key]'); expect($row.find('.js-ci-variable-input-key').attr('name')).toBe('schedule[variables_attributes][][secret_key]');
expect($row.find('.js-ci-variable-input-value').attr('name')).toBe('schedule[variables_attributes][][value]'); expect($row.find('.js-ci-variable-input-value').attr('name')).toBe('schedule[variables_attributes][][secret_value]');
$wrapper.closest('form').trigger('trigger-submit'); $wrapper.closest('form').trigger('trigger-submit');