diff --git a/src/integration.tests/integration.test.js b/src/integration.tests/integration.test.js index 7cda00d..de9a4d1 100644 --- a/src/integration.tests/integration.test.js +++ b/src/integration.tests/integration.test.js @@ -204,14 +204,52 @@ describe('Differencify', () => { .goto('http://example.com/') .waitFor(1000) .screenshot() - .toMatchSnapshot() + .toMatchSnapshot((resultDetail) => { + expect(resultDetail).toEqual({ + testConfig: { + chain: true, + imageType: 'png', + isJest: true, + isUpdate: false, + testId: 11, + testName: 'Differencify Multiple toMatchSnapshot on chained object', + testNameProvided: false, + testPath: '/differencify/src/integration.tests/integration.test.js', + }, + testResult: { + diffPercent: 0, + distance: 0, + matched: true, + snapshotPath: '/differencify/src/integration.tests/__image_snapshots__/Differencify Multiple toMatchSnapshot on chained object.1.snap.png', + }, + }) + }) .result((result) => { expect(result).toEqual(true); }) .goto('http://example.com/') .waitFor(1000) .screenshot() - .toMatchSnapshot() + .toMatchSnapshot((resultDetail) => { + expect(resultDetail).toEqual({ + testConfig: { + chain: true, + imageType: 'png', + isJest: true, + isUpdate: false, + testId: 12, + testName: 'Differencify Multiple toMatchSnapshot on chained object', + testNameProvided: false, + testPath: '/differencify/src/integration.tests/integration.test.js', + }, + testResult: { + diffPercent: 0, + distance: 0, + matched: true, + snapshotPath: '/differencify/src/integration.tests/__image_snapshots__/Differencify Multiple toMatchSnapshot on chained object.2.snap.png', + }, + }); + }) .result((result) => { expect(result).toEqual(true); }) diff --git a/src/target.js b/src/target.js index b5c2830..01f770f 100644 --- a/src/target.js +++ b/src/target.js @@ -219,9 +219,9 @@ export default class Target { ? `${this.testStats.currentTestName} ${this.testId}` : this.testStats.currentTestName; } else { - this.testConfig.testName = this.testId - ? `${this.testConfig.testName} ${this.testId}` - : this.testConfig.testName; + let previousTestSuffix = `.${(this.testId - 1)}`; + var re = new RegExp(previousTestSuffix, "g"); + this.testConfig.testName = this.testId ? `${this.testConfig.testName.replace(re, '')}.${this.testId}` : this.testConfig.testName; } this.testId += 1; const result = await this._evaluateResult();