ember-freshdesk-codemods
Version:
35 lines (29 loc) • 544 B
JavaScript
import {
describe,
it,
beforeEach,
afterEach
} from 'mocha';
import {
setupTranslations,
setupAcceptance
} from '@freshdesk/test-helpers';
describe.skip('Some test', function() {
setupAcceptance();
setupTranslations(true);
beforeEach(function() {
// ...
});
afterEach(function() {
// ...
});
it('Some test', function() {
// ...
});
context('Testing withing context', function() {
// Should not add hook in beforeEach within a context
beforeEach(function() {
// ...
});
});
});