Skip to content

Instantly share code, notes, and snippets.

@TechWithTy
Created September 24, 2019 00:54
Show Gist options
  • Save TechWithTy/2140cae0ef1f30019dcef1f9e8c7493a to your computer and use it in GitHub Desktop.
Save TechWithTy/2140cae0ef1f30019dcef1f9e8c7493a to your computer and use it in GitHub Desktop.
Jest-Test
import {productionEnv} from './context'
console.log(productionEnv)
const production = true;
test('Production Test', () => {
expect(production).toBeTruthy();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment