Created
September 24, 2019 00:54
-
-
Save TechWithTy/2140cae0ef1f30019dcef1f9e8c7493a to your computer and use it in GitHub Desktop.
Jest-Test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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