From 30604dc77b679f801bc8377afc79ee536272fca4 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 30 Apr 2025 18:02:07 +0000 Subject: [PATCH] fix(tests): Fix test file naming inconsistencies --- changelog.md | 6 ++++++ test/{test.diffOutput.ts => test.diffoutput.ts} | 0 test/{test.propertyPath.ts => test.propertypath.ts} | 0 ts/00_commitinfo_data.ts | 2 +- 4 files changed, 7 insertions(+), 1 deletion(-) rename test/{test.diffOutput.ts => test.diffoutput.ts} (100%) rename test/{test.propertyPath.ts => test.propertypath.ts} (100%) diff --git a/changelog.md b/changelog.md index ad271c6..a984341 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-04-30 - 2.3.3 - fix(tests) +Fix test file naming inconsistencies + +- Rename 'test/test.diffOutput.ts' to 'test/test.diffoutput.ts' to standardize filename casing +- Rename 'test/test.propertyPath.ts' to 'test/test.propertypath.ts' for consistent file naming + ## 2025-04-30 - 2.3.2 - fix(object) Update toHaveProperty matcher to support nested property paths using dot notation diff --git a/test/test.diffOutput.ts b/test/test.diffoutput.ts similarity index 100% rename from test/test.diffOutput.ts rename to test/test.diffoutput.ts diff --git a/test/test.propertyPath.ts b/test/test.propertypath.ts similarity index 100% rename from test/test.propertyPath.ts rename to test/test.propertypath.ts diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 96b5521..1e96d3a 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartexpect', - version: '2.3.2', + version: '2.3.3', description: 'A testing library to manage expectations in code, offering both synchronous and asynchronous assertion methods.' }