I have an array by the name students and a student object
let students = []
let student = {
name: '',
rollNumber: '',
age: '',
rank: ''
}I have an array by the name students and a student object
let students = []
let student = {
name: '',
rollNumber: '',
age: '',
rank: ''
}| import test from 'ava'; | |
| function sum (a, b) { | |
| return a + b; | |
| } | |
| test('foo is being tested', t => { | |
| t.pass(); | |
| }) | |
| test('bar is being tested', async t => { | |
| const bar = Promise.resolve('bar'); |
| const express = require('express'); | |
| const bodyParser = require('body-parser'); | |
| const app = express(); | |
| app.use(bodyParser.json()); | |
| app.use(bodyParser.urlencoded({extended: true})) | |
| app.get('/status', (req , res) => { | |
| res.send({ |
| const app = require('./app.js'); | |
| const http = require('http') | |
| const server = http.createServer(app); | |
| const PORT = process.env.NODE_ENV || 5000; | |
| server.listen(PORT, () => { | |
| console.log(`Listening to port ${PORT}`); | |
| }) |
| import test from 'ava'; | |
| const request = require('supertest'); | |
| const app = require('./../app.js'); | |
| test('check status', async t => { | |
| const response = await request(app) | |
| .get('/status'); | |
| t.is(response.status, 200); | |
| t.deepEqual(response.body, { |
| import * as RoutingConstants from './constants/RoutingConstants'; | |
| import { Route, Switch } from 'react-router-dom'; | |
| import AboutUs from './pages/AboutUs'; | |
| import Products from './pages/Products'; | |
| import Homepage from './pages/Homepage'; | |
| import React, { Component } from 'react';; | |
| class App extends Component<{}, {}> { | |
| render() { | |
| return ( |
| import * as RoutingConstants from './constants/RoutingConstants'; | |
| import { Route, Switch } from 'react-router-dom'; | |
| import LoadingComponent from './pages/LoadingComponent'; | |
| import React, { Component } from 'react'; | |
| function asyncComponent(importComponent: Function, LoadingComponent: Function) { | |
| class AsyncComponent extends Component { | |
| constructor(props) { | |
| super(props); |
| /// Somewhere on your express server | |
| import Loadable from 'react-loadable'; | |
| Loadable.preloadAll().then(() => { | |
| server.listen(port, function () { | |
| console.log('Express server listening on port ' + server.address().port); | |
| }); | |
| }); |
| /* @flow */ | |
| import { StaticRouter } from 'react-router-dom'; | |
| import { getBundles } from 'react-loadable/webpack'; | |
| import App from './../App'; | |
| import Loadable from 'react-loadable'; | |
| import React from 'react'; | |
| import ReactDOMServer from 'react-dom/server'; | |
| import bundleStats from './../../dist/build/react-loadable.json'; |
| const express = require('express'); | |
| const bodyParser = require('body-parser'); | |
| const app = express(); | |
| const userController = require('./userController'); | |
| app.use(bodyParser.json()); | |
| app.use(bodyParser.urlencoded({ extended: true })); | |
| app.post('/user', userController.createOrAddUser); |