Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = {
// ],

// Indicates which provider should be used to instrument code for coverage
// coverageProvider: "babel",
coverageProvider: 'v8',

// A list of reporter names that Jest uses when writing coverage reports
coverageReporters: ['text-summary', 'html'],
Expand Down
26 changes: 12 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@
"prepack": "yarn run release"
},
"dependencies": {
"@adobe/css-tools": "^4.4.3",
"jest-diff": "^30.0.2",
"lodash": "^4.17.21"
"@prettier/sync": "^0.6.1",
"jest-diff": "^30.0.3",
"postcss": "^8.5.6",
"prettier": "^3.6.2"
},
"peerDependencies": {
"sass": ">=1.45.0",
Expand All @@ -79,35 +80,32 @@
}
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/core": "^7.27.7",
"@babel/eslint-parser": "^7.27.5",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.29.0",
"@types/lodash": "^4.17.18",
"@eslint/js": "^9.30.0",
"babel-jest": "^30.0.2",
"chai": "^4.5.0",
"eslint": "^9.29.0",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.2.0",
"jest": "^30.0.2",
"mocha": "^11.7.0",
"globals": "^16.3.0",
"jest": "^30.0.3",
"mocha": "^11.7.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"prettier": "^3.6.0",
"sass": "^1.89.2",
"sass-embedded": "^1.89.2",
"sassdoc": "^2.7.4",
"sassdoc-theme-herman": "^6.0.2",
"stylelint": "^16.21.0",
"stylelint-config-standard-scss": "^15.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
"typescript-eslint": "^8.35.1"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ export const MODULE_NESTING_TOKEN = ' :: ';
export const SUMMARY_TOKEN = '# SUMMARY ';
export const END_SUMMARY_TOKEN = '----------';
export const TEST_TOKEN = 'Test: ';
export const PASS_TOKEN = '✔ ';
export const PASS_TOKEN = '✔';
Comment thread
jgerigmeyer marked this conversation as resolved.
export const FAIL_TOKEN = '✖ FAILED: [';
export const END_FAIL_TOKEN = ']';
export const ASSERT_TOKEN = 'ASSERT: ';
export const ASSERT_TOKEN = 'ASSERT:';
export const FAILURE_DETAIL_TOKEN = '- ';
export const FAILURE_TYPE_START_TOKEN = '[';
export const FAILURE_TYPE_END_TOKEN = ']';
Expand Down
Loading