1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- describe('first suite', () => {
- it('should be ok', () => {
- expect(true).toBe(true);
- });
- it('should be pending', () => {
- pending('will work soon');
- expect(true).toBe(true);
- });
- it('should failed', () => {
- expect(true).toBe(false);
- });
- it('should be ok', () => {
- expect(true).toBe(true);
- });
- });
- describe('second suite', () => {
- xit('should be pending', () => {
- expect(true).toBe(false);
- });
- it('should be ok', () => {
- expect(true).toBe(true);
- });
- describe('first child suite', () => {
- describe('first grandchild suite', () => {
- it('should failed', () => {
- expect(true).toBe(false);
- expect(true).toBe(false);
- expect(true).toBe(true);
- });
- it('should failed', () => {
- expect(true).toBe(false);
- });
- it('should be ok', () => {
- expect(true).toBe(true);
- });
- });
- describe('second grandchild suite', () => {
- it('should failed', () => {
- expect(true).toBe(false);
- });
- it('should be ok', () => {
- expect(true).toBe(true);
- });
- });
- });
- });
|