chore(test): organize tests a bit better (#7)

* chore(test): organize tests a bit better

* add caching
This commit is contained in:
Richard Simpson
2019-11-24 16:00:31 -06:00
committed by GitHub
parent 3747195c5f
commit 38c189f087
12 changed files with 101 additions and 73 deletions

View File

@@ -0,0 +1,7 @@
describe('e2e', () => {
it('verify', () => {
expect(process.env.SECRET).toBe("SUPERSECRET");
expect(process.env.NAMED_SECRET).toBe("SUPERSECRET");
expect(process.env.OTHERSECRET).toBe("OTHERSUPERSECRET");
});
});