One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| // build any express app that shows backend skills | |
| const skills = [ | |
| 'deep database knowledge', | |
| 'deep security knowledge', | |
| 'deep testing (unit, integrated, and e2e)', | |
| 'worker_thread and clusters', | |
| 'networking' | |
| ] |
| drawImage = async img_path => { | |
| let canvas = document.createElement("canvas"); | |
| canvas.src = img_path; | |
| const context = canvas.getContext("2d"); | |
| const img = await loadImage(img_path); | |
| canvas.width = img.width; | |
| canvas.height = img.height; | |
| context.drawImage(img, 0, 0); |
| import chai from 'chai'; | |
| import chaiHttp from "chai-http"; | |
| import { app as server } from './app.js'; | |
| // configure chai to send/receive HTTP REQUEST | |
| chai.use(chaiHttp); | |
| describe("TDD for Users", () => { | |
| after(() => { | |
| server.close(); |