Skip to content

Latest commit

 

History

History
82 lines (65 loc) · 3.5 KB

File metadata and controls

82 lines (65 loc) · 3.5 KB

March 28th

This week we added some nice polish to the UI and function search.

We also landed Jest code coverage, which shows us where we need to add additional unit tests.

Special thanks to:

  • Ruturaj who helped us improve function search by inferring function names from the variables they're assigned to.
  • Sam who fixed a UI nit where the debugger would highlight the previously selected line on open.

and everyone else who helped this week!

@wildskyf, @ruturajv, @clarkbw, @samjwalker, @abhishekg785, @jacobjzhang, @arthur801031, @AnshulMalik, @jasonLaster

UI

Function Search

function incrementCounter(counter) {
  return counter++;
}

const sum = (a, b) => a + b;

Infrastructure

cov-screen