Commit 998b460e authored by Alexander Turinske's avatar Alexander Turinske

Clean up tests

parent ef35231e
...@@ -285,21 +285,18 @@ describe('DAST Scanner Profile', () => { ...@@ -285,21 +285,18 @@ describe('DAST Scanner Profile', () => {
}); });
describe('when profile does not come from a policy', () => { describe('when profile does not come from a policy', () => {
let formGroups;
beforeEach(() => { beforeEach(() => {
createComponent({ createComponent({
propsData: { propsData: {
profile: defaultProfile, profile: defaultProfile,
}, },
}); });
formGroups = findAllFormGroups().wrappers;
}); });
it('should enable all form groups', () => { it('should enable all form groups', () => {
formGroups.forEach((formGroup) => { expect(
expect(formGroup.attributes('disabled')).toBe(undefined); findAllFormGroups().wrappers.every((w) => w.attributes('disabled') === undefined),
}); ).toBe(true);
}); });
it('should show the policy profile alert', () => { it('should show the policy profile alert', () => {
...@@ -308,15 +305,12 @@ describe('DAST Scanner Profile', () => { ...@@ -308,15 +305,12 @@ describe('DAST Scanner Profile', () => {
}); });
describe('when profile does comes from a policy', () => { describe('when profile does comes from a policy', () => {
let formGroups;
beforeEach(() => { beforeEach(() => {
createComponent({ createComponent({
propsData: { propsData: {
profile: policyScannerProfile, profile: policyScannerProfile,
}, },
}); });
formGroups = findAllFormGroups().wrappers;
}); });
it('should show the policy profile alert', () => { it('should show the policy profile alert', () => {
...@@ -324,9 +318,9 @@ describe('DAST Scanner Profile', () => { ...@@ -324,9 +318,9 @@ describe('DAST Scanner Profile', () => {
}); });
it('should disable all form groups', () => { it('should disable all form groups', () => {
formGroups.forEach((formGroup) => { expect(findAllFormGroups().wrappers.every((w) => w.attributes('disabled') === 'true')).toBe(
expect(formGroup.attributes('disabled')).toBe('true'); true,
}); );
}); });
it('should disable the save button', () => { it('should disable the save button', () => {
......
...@@ -121,20 +121,18 @@ describe('DastSiteAuthSection', () => { ...@@ -121,20 +121,18 @@ describe('DastSiteAuthSection', () => {
describe('when profile does not come from a policy', () => { describe('when profile does not come from a policy', () => {
it('should enable all form groups', () => { it('should enable all form groups', () => {
createComponent({ mountFn: shallowMount, fields: { enabled: true } }); createComponent({ mountFn: shallowMount, fields: { enabled: true } });
const formGroups = findAllFormGroups().wrappers; expect(
formGroups.forEach((formGroup) => { findAllFormGroups().wrappers.every((w) => w.attributes('disabled') === undefined),
expect(formGroup.attributes('disabled')).toBe(undefined); ).toBe(true);
});
}); });
}); });
describe('when profile does comes from a policy', () => { describe('when profile does comes from a policy', () => {
it('should disable all form groups', () => { it('should disable all form groups', () => {
createComponent({ mountFn: shallowMount, disabled: true, fields: { enabled: true } }); createComponent({ mountFn: shallowMount, disabled: true, fields: { enabled: true } });
const formGroups = findAllFormGroups().wrappers; expect(findAllFormGroups().wrappers.every((w) => w.attributes('disabled') === 'true')).toBe(
formGroups.forEach((formGroup) => { true,
expect(formGroup.attributes('disabled')).toBe('true'); );
});
}); });
}); });
}); });
......
...@@ -346,10 +346,9 @@ describe('DastSiteProfileForm', () => { ...@@ -346,10 +346,9 @@ describe('DastSiteProfileForm', () => {
}); });
it('should enable all form groups', () => { it('should enable all form groups', () => {
const formGroups = findAllFormGroups(); expect(
for (let i = 0; i < formGroups.length; i += 1) { findAllFormGroups().wrappers.every((w) => w.attributes('disabled') === undefined),
expect(formGroups.at(i).attributes('disabled')).toBe(undefined); ).toBe(true);
}
}); });
it('should show the policy profile alert', () => { it('should show the policy profile alert', () => {
...@@ -371,10 +370,9 @@ describe('DastSiteProfileForm', () => { ...@@ -371,10 +370,9 @@ describe('DastSiteProfileForm', () => {
}); });
it('should disable all form groups', () => { it('should disable all form groups', () => {
const formGroups = findAllFormGroups(); expect(findAllFormGroups().wrappers.every((w) => w.attributes('disabled') === 'true')).toBe(
for (let i = 0; i < formGroups.length; i += 1) { true,
expect(formGroups.at(i).attributes('disabled')).toBe('true'); );
}
}); });
it('should disable the save button', () => { it('should disable the save button', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment