describe('Scoped A', () => { beforeAll(() => { console.log('Scoped A - beforeAll') }) beforeEach(() => { console.log('Scoped A - beforeEach') }) afterAll(() => { console.log('Scoped A - afterAll') }) afterEach(() => { console.log('Scoped A - afterEach') }) it('Scoped A case 1', () => { console.log('Scoped A case 1') }) it('Scoped A case 2', () => { console.log('Scoped A case 2') }) }) describe('Scoped B', () => { beforeAll(() => { console.log('Scoped B - beforeAll') }) beforeEach(() => { console.log('Scoped B - beforeEach') }) afterAll(() => { console.log('Scoped B - afterAll') }) afterEach(() => { console.log('Scoped B - afterEach') }) it('Scoped B case 1', () => { console.log('Scoped B case 1') }) it('Scoped B case 2', () => { console.log('Scoped B case 2') }) }) // 打印结果 // Global - beforeAll // Scoped A - beforeAll // Global - beforeEach // Scoped A - beforeEach // Scoped A case 1 // Scoped A - afterEach // Global - afterEach
// Global - beforeEach // Scoped A - beforeEach // Scoped A case 2 // Scoped A - afterEach // Global - afterEach // Scoped A - afterAll
// Scoped B - beforeAll // Global - beforeEach // Scoped B - beforeEach // Scoped B case 1 // Scoped B - afterEach // Global - afterEach
// Global - beforeEach // Scoped B - beforeEach // Scoped B case 2 // Scoped B - afterEach // Global - afterEach // Scoped B - afterAll // Global - afterAll