I was recently assigned a ticket in which I had to rebuild a UI in React. Here at PMG, we use Karma, Enzyme, and Chai to help test our React components. In completing the ticket, I learned a few things about Mocha/Enzyme and thought I would share. Let’s start with a quick tip in the […]

Tag: Engineering
March 12, 2019
May 10, 2018
For those of you unfamiliar with the development world, rumor has it, there’s a new type of code that may be the future of web development called WebAssembly (Wasm). Wasm is a low-level assembly-like language and allows a developer to write in multiple languages (C/C++/Rust) on the web at near-native speeds. Wasm is designed to […]
October 23, 2013
Let’s say you’re building a system that stores bids (for an ad, for an auction, doesn’t matter) from an external source. Each bid is a value, item/product ID, and timestamp. The external source of the bid doesn’t push updates. Your program will have to go fetch them. However, the bid source only gives you the […]