Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
Cleaner mocha-in-browser test results (#1630)
Browse files Browse the repository at this point in the history
  • Loading branch information
evertonfraga committed Feb 1, 2017
1 parent b4f24cd commit e099e25
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/mocha-in-browser/spec/general-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ describe('General', function () {
});

describe('mist.menu', function () {
beforeEach(function () {
before(function () {
mist.menu.clear();
});

afterEach(function () {
mist.menu.clear();
});

Expand Down

0 comments on commit e099e25

Please sign in to comment.