Skip to content

Commit dd36cfb

Browse files
committed
unskipped BottomTabs, no more MUI errors
1 parent 7d3fc79 commit dd36cfb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

__tests__/BottomTabs.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('Bottom Panel Render Test', () => {
4141
});
4242
});
4343

44-
xdescribe('Creation Panel', () => {
44+
describe('Creation Panel', () => {
4545
test('should invalidate empty field in New Component name', async () => {
4646
render(
4747
<Provider store={store}>
@@ -123,7 +123,7 @@ xdescribe('Creation Panel', () => {
123123
});
124124
});
125125

126-
xdescribe('Context Manager', () => {
126+
describe('Context Manager', () => {
127127
test('should render Create/Edit, Assign, and Display tabs', () => {
128128
render(
129129
<Provider store={store}>

app/src/components/StateManagement/CreateTab/components/StatePropsPanel.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ const StatePropsPanel = ({ isThemeLight, data }): JSX.Element => {
112112

113113

114114
useEffect(()=>{
115-
console.log("inputValue changed", inputValue)
115+
116116
setNewVal(typeConversion(inputValue, inputType));
117-
console.log("current newVal", newVal)
117+
118118
}, [inputType, inputValue] )
119-
console.log("current outside newVal", newVal)
119+
120120
// submit new stateProps entries to state context
121121
const submitNewState = (e) => {
122122
e.preventDefault();

app/src/components/StateManagement/CreateTab/components/TableStateProps.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ const TableStateProps = props => {
101101

102102
// rows to show are either from current component or from a given provider
103103
let rows = [];
104-
currentComponent.stateProps?.forEach((prop) =>{ console.log('prop', prop); rows.push(prop)});
105-
console.log("what is in rows", rows)
104+
currentComponent.stateProps?.forEach((prop) =>{ rows.push(prop)});
105+
106106

107107

108108
return (

0 commit comments

Comments
 (0)