Skip to content

Commit

Permalink
Try something out
Browse files Browse the repository at this point in the history
  • Loading branch information
imurchie committed Nov 27, 2017
1 parent 5d55d96 commit e78e4f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/helper-specs.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ describe('helpers', () => {

describe('getAndroidPlatformAndPath', withMocks({fs, path}, (mocks) => {
let oldAndroidHome;
before(function () {
beforeEach(function () {
oldAndroidHome = process.env.ANDROID_HOME;
});
after(function () {
afterEach(function () {
process.env.ANDROID_HOME = oldAndroidHome;
});

Expand Down

0 comments on commit e78e4f4

Please sign in to comment.