Thanks to visit codestin.com
Credit goes to github.com

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 dist/app.css

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion dist/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Chimera UI Libraries - Build 0.35.15 (8/2/2025, 11:08:45)
* Chimera UI Libraries - Build 0.36.2 (8/20/2025, 10:55:15)
*
*/
/******/ (function(modules) { // webpackBootstrap
Expand Down Expand Up @@ -1448,6 +1448,11 @@ var DEFAULT_CONFIG = exports.DEFAULT_CONFIG = {
title: '',
totalCardLimit: -1,
cardStyle: '',
bladeCard: {
reverse: false,
lightText: false,
transparent: false
},
displayTotalResults: true,
totalResultsText: '{} results',
i18n: {
Expand Down
4 changes: 2 additions & 2 deletions dist/main.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/main.source.js

Large diffs are not rendered by default.

42 changes: 42 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,48 @@ module.exports = {
// The test environment that will be used for testing
testEnvironment: 'jest-environment-jsdom-fifteen',

// Use Babel 7 just for Jest, ignoring project .babelrc (Babel 6)
transform: {
'^.+\\.[jt]sx?$': [
'babel-jest',
{
babelrc: false,
presets: [
[
'@babel/preset-env',
{
targets: { node: 'current' },
modules: 'commonjs',
},
],
['@babel/preset-react', { runtime: 'classic' }],
],
plugins: [
['@babel/plugin-transform-class-properties', { loose: true }],
['@babel/plugin-transform-object-rest-spread', { loose: true }],
[
'istanbul',
{
exclude: [
'**/Modal/**',
'**/js/components/Consonant/Testing/**',
'**/app.jsx',
'**/ConsonantPageDOM.jsx',
'**/polyfills.js',
'**/watch.js',
'**/js/components/Consonant/Helpers/TestingConstants/**',
'**/__tests__/**',
'**/__test__/**',
'**/enzyme.config.js',
'**/*.config.js',
],
},
],
],
},
],
},

// The glob patterns Jest uses to detect test files
testMatch: ['**/__tests__/**/*.js?(x)', '**/?(*.)+(spec|test).js?(x)'],

Expand Down
Loading
Loading