copy from force-app/main/default/lwc/lexSpecilaApplyCreate/__tests__/lexSpecilaApplyCreate.test.js
copy to force-app/main/default/lwc/lexClosingCaseFlow/__tests__/lexClosingCaseFlow.test.js
| File was copied from force-app/main/default/lwc/lexSpecilaApplyCreate/__tests__/lexSpecilaApplyCreate.test.js |
| | |
| | | import { createElement } from 'lwc'; |
| | | import LexSpecilaApplyCreate from 'c/lexSpecilaApplyCreate'; |
| | | import LexClosingCaseFlow from 'c/lexClosingCaseFlow'; |
| | | |
| | | describe('c-lex-specila-apply-create', () => { |
| | | describe('c-lex-closing-case-flow', () => { |
| | | afterEach(() => { |
| | | // The jsdom instance is shared across test cases in a single file so reset the DOM |
| | | while (document.body.firstChild) { |
| | |
| | | |
| | | it('TODO: test case generated by CLI command, please fill in test logic', () => { |
| | | // Arrange |
| | | const element = createElement('c-lex-specila-apply-create', { |
| | | is: LexSpecilaApplyCreate |
| | | const element = createElement('c-lex-closing-case-flow', { |
| | | is: LexClosingCaseFlow |
| | | }); |
| | | |
| | | // Act |