Skip to content

Commit

Permalink
Try to fix the unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
imurchie committed Nov 27, 2017
1 parent 3863819 commit 97db3ac
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;
beforeEach(function () {
before(function () {
oldAndroidHome = process.env.ANDROID_HOME;
});
afterEach(function () {
after(function () {
process.env.ANDROID_HOME = oldAndroidHome;
});

Expand Down

0 comments on commit 97db3ac

Please sign in to comment.