Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Acceptance Criteria - [x] Update CRA Response Integration job to search for new file name - [x] [CRA Environment Code]BCSA#####.TXT - [x] No change on request - confirmed with IMB CRA income verification request file name can remain the same. **Context:** DEV: ABCSA#####.TXT TEST: ABCSA#####.TXT PROD: PBCSA#####.TXT **Current File Names for CRA Income:** - CCRA_REQUEST_${this.craConfig.environmentCode}${sequenceFile}.DAT - /CCRA_RESPONSE_[\w]*\.txt/i *note Regex test ``` const environmentCode = 'A'; const regex = new RegExp(`[${environmentCode}]BCSA\\d{5}\\.TXT`, 'i'); const testString = 'ABCSA00001.TXT'; console.log(regex.test(testString)); // true ```
- Loading branch information