e105e76f9e
- Update Menubar test cases to match component changes (logo instead of text) - Add required currentView prop to all Menubar test cases - Fix Calendar test cases by adding calendarRef wrapper component - Convert babel.config.ts to babel.config.js for Node.js 24 compatibility - All 146 tests now pass successfully
7 lines
180 B
JavaScript
7 lines
180 B
JavaScript
module.exports = {
|
|
presets: [
|
|
["@babel/preset-env", { targets: { node: "current" } }],
|
|
["@babel/preset-react", { runtime: "automatic", importSource: "preact" }],
|
|
],
|
|
};
|