Need: notes on Shallow, Mount, and wrapper.instance()
`import React from 'react'; import { shallow } from 'enzyme'; import { Provider } from 'react-redux'; import { getDataFetch } from '../../util/apiCalls.js';
https://drive.google.com/file/d/1ieovkpMx1PQP1UxiLDKMdqMecuSTli-L/view?usp=drivesdk |
` import React from 'react'; import ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; import { createStore } from 'redux'; import { composeWithDevTools } from 'redux-devtools-extension'; import rootReducer from './reducers'; import './base.scss'; import App from './containers/App/App';
import React from 'react'; import ReactDOM from 'react-dom'; import './base.scss'; import App from './containers/App/App'; import { Provider } from 'react-redux' import { createStore } from 'redux' import { composeWithDevTools } from 'redux-devtools-extension'; import { rootReducer } from './reducers/index.js'
I make a lot of articulations on branches as I'm going, so I might start stashing those instead of making new random branches with then on it.
From my understanding, a rebase takes commits from a branch 1 by 1 and then attaches them to a different commit in chronological order, but giving them new identifiers and timestamps. I believe a merge sort of mushes all of the commits together, going by timestamp.
Meetings with Tracey every 2 weeks starting June 3.
Things they will be assessing:
Things to ask:
With help from https://medium.com/swlh/build-your-first-rest-api-with-django-rest-framework-e394e39a482c
Make sure this is in your bash profile - you can write it in Atom and save it in your home directory's bash profile `export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3 export WORKON_HOME=$HOME/.virtualenvs export PROJECT_HOME=$HOME/Code