diff --git a/src/layouts/tpa-search/tpa-search.spec.js b/src/layouts/tpa-search/tpa-search.spec.js index 99754c6b..065560fe 100644 --- a/src/layouts/tpa-search/tpa-search.spec.js +++ b/src/layouts/tpa-search/tpa-search.spec.js @@ -104,7 +104,7 @@ describe('TPA search page', () => { expect(searchQuestionLabel.classes()).toContain('mb-0'); expect(searchQuestionLabel.classes()).toContain('text-black'); expect(searchQuestionLabel.classes()).toContain('w-100'); - expect(searchQuestionLabel.classes()).toContain('search-question'); + expect(searchQuestionLabel.classes()).toContain('fs-5'); }); test('search instructions', () => { // Arrange @@ -273,7 +273,8 @@ describe('TPA search page', () => { // Assert expect(preferredShopNotListedLink.exists()).toBeTruthy(); expect(preferredShopNotListedLink.props().linkType).toBe('navigation'); - expect(preferredShopNotListedLink.props().href).toBe('#!'); + // eslint-disable-next-line no-script-url + expect(preferredShopNotListedLink.props().href).toBe('javascript:void(0)'); }); test('site footer', () => { // Arrange diff --git a/src/layouts/tpa-submit/deductible-box/deductible-box.spec.js b/src/layouts/tpa-submit/deductible-box/deductible-box.spec.js index e69de29b..856893a4 100644 --- a/src/layouts/tpa-submit/deductible-box/deductible-box.spec.js +++ b/src/layouts/tpa-submit/deductible-box/deductible-box.spec.js @@ -0,0 +1,3 @@ +describe('deductible-box', () => { + test('', () => {}); +}); diff --git a/src/layouts/tpa-submit/review-block/review-block.spec.js b/src/layouts/tpa-submit/review-block/review-block.spec.js index e69de29b..8d605bc6 100644 --- a/src/layouts/tpa-submit/review-block/review-block.spec.js +++ b/src/layouts/tpa-submit/review-block/review-block.spec.js @@ -0,0 +1,3 @@ +describe('review-block', () => { + test('', () => {}); +}); diff --git a/src/layouts/tpa-submit/tpa-submit.spec.js b/src/layouts/tpa-submit/tpa-submit.spec.js index c730f97f..9ed7c5b2 100644 --- a/src/layouts/tpa-submit/tpa-submit.spec.js +++ b/src/layouts/tpa-submit/tpa-submit.spec.js @@ -1,3 +1,3 @@ -// TODO -// Write test cases -// implement tests +describe('tpa-submit', () => { + test('', () => {}); +});