รายละเอียดสำหรับเรียนรู้ React ปี 2020-2023 โดยโค้ชพล ดูหลักสูตรได้ที่ https://www.nextflow.in.th/react-training
// src/App.test.js
it('should has loading state as false', () => {
const component = shallow(<App/>);
const props = component.instance().props;
expect(props.loading).toBe(false);
});
ทดสอบรัน test
ในที่นี้เราจะแปลง App จาก function component เป็น class component ด้วย
import React, { Component } from 'react';
import './App.css';
import MenuBar from './components/MenuBar';
import { Layout, Spin } from 'antd';
import HomePage from './pages/home-page/HomePage';
import { Route, Switch } from "react-router-dom";
import LoginPage from './pages/login-page/LoginPage';
import { connect } from 'react-redux';
const { Footer } = Layout;
class App extends Component {
render() {
return (
<div>
<Spin>
<Layout className="layout">
<MenuBar />
<Switch>
<Route path="/" exact component={LoginPage} />
<Route path="/home" exact component={HomePage} />
</Switch>
<Footer style=>React Redux Workshop ©2012-2019 Created by Nextflow.in.th</Footer>
</Layout>
</Spin>
</div>
);
}
}
App.defaultProps = {
loading: false
};
export default App;
ทดสอบรัน test