3.2.17 (2023-05-30)
3.2.16 (2023-04-13)
3.2.15 (2023-04-02)
3.2.14 (2023-03-17)
3.2.13 (2023-02-20)
3.2.12 (2023-02-11)
3.2.11 (2023-01-16)
3.2.10 (2023-01-16)
3.2.9 (2023-01-10)
3.2.8 (2022-12-14)
3.2.7 (2022-11-28)
3.2.6 (2022-10-22)
- add missing type (709bd75)
3.2.5 (2022-10-03)
3.2.4 (2022-10-03)
3.2.3 (2022-10-02)
3.2.2 (2022-10-02)
- deps: update dependency standard-log-color to v9 (40acb22)
3.2.1 (2022-09-07)
- upgrade standard-log (c2d875b)
3.2.0 (2022-09-07)
- add execCommand alt signature (435a2d9)
3.1.4 (2022-09-05)
- bundle cjs files (6b352b8)
3.1.3 (2022-09-05)
- avoid creating baselines folder (ee3a5c3)
3.1.2 (2022-08-27)
- misc adjustments (3d72152)
3.1.1 (2022-08-27)
- update docs (e1794a7)
3.1.0 (2022-08-27)
- adjust escape sequence (4556b35)
- another way to escape (6de3428)
- do not create baseline folder (6ab9111)
- error case (2485cff)
- try using execa (ac3aab1)
- update cp-file (4953ee1)
3.0.1 (2022-08-25)
- update README (9ba6776)
3.0.0 (2022-08-25)
- improve code comments (9cea98b)
- adjust folders to paths (92cce46)
- context behavir changed
The handler context now contains case|baseline|resultPath
instead of folder.
The behavior for file-case and folder-case now are are same.
casePath
points to the actual case file or folder.
baseline|resultPath
always points to a folder with case name.
Even if it is a file-case,
a folder with that name (including file extension) will be created.
This allows user to simply check caseType
to see if it is a file or folder case and read the right thing,
based on their assumption of the structure.
This allows the baseline()
to be used in a fixture folder with mixed file and folder cases.
2.0.2 (2022-08-23)
- upgrade standard-log (857a7a8)
2.0.1 (2022-06-07)
2.0.0 (2022-06-05)
- feat!: upgrade chalk (33be932)
- upgrade chalk
chalk@5
is published as ESM, and that breaks jest
.
Need to add this to jest.config.js
:
{
moduleNameMapper: {
'#(.*)': '<rootDir>/node_modules/$1' // needed for `chalk` getting `#ansi-styles`
},
transformIgnorePatterns: [
'node_modules/(?!(@unional\\fixture|chalk)/)'
]
}
1.8.5 (2022-06-05)
- downgrade chalk (41c89f2)
1.8.4 (2022-06-05)
- adding cjs back (cbc9b9a)
1.8.3 (2022-06-05)
- update deps (a9f14d1)