D
Size: a a a
R
D
R
D
VP
VP
SV
VP
IY
declare const allure;
describe('Foo', () => {
beforeEach(async () => {
allure.epic('Foo');
});
it('Foo', async () => {
expect(await Foo).toBeTruthy();
});
describe('Bar', () => {
beforeEach(async () => {
allure.feature('Bar');
});
it('Bar', async () => {
expect(await Bar).toBeTruthy();
});
describe('Baz', () => {
beforeEach(async () => {
allure.story('Baz');
});
it('Baz', async () => {
expect(await Baz).toBeTruthy();
});
});
});
});
T
KM
KM
BO
KM
KM
LY
ES
M
MK