HEX
Server: Apache/2.4.61 (Ubuntu)
System: Linux hosting106 7.0.12-1-pve #1 SMP PREEMPT_DYNAMIC PMX 7.0.12-1 (2026-06-09T21:07Z) x86_64
User: clinicadentalargarate.com (1193)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //usr/share/doc/node-tap/examples/mocha-example.js
/* standard ignore next */
describe('parent', function () {

  before('name', function () {
    console.error('before')
  });

  after(function () {
    console.error('after')
  });

  beforeEach(function () {
    console.error('beforeEach')
  });

  afterEach('after each name', function () {
    console.error('afterEach')
  });

  it('first', function () {
    console.error('first it')
  })
  it('second', function () {
    console.error('second it')
  })

  describe('child 1', function () {
    console.error('in child 1')
    before(function () {
      console.error('before 2')
    });

    after(function () {
      console.error('after 2')
    });

    beforeEach(function () {
      console.error('beforeEach 2')
    });

    afterEach(function () {
      console.error('afterEach 2')
    });

    it('first x', function () {
      console.error('first it')
    })
    it('second', function (done) {
      console.error('second it')
      setTimeout(done)
    })
    describe('gc 1', function () {
      it('first y', function () {
        console.error('first it')
      })
      it('second', function (done) {
        console.error('second it')
        setTimeout(done)
      })
      it('third', function (done) {
        console.error('third it')
        done()
      })
    })
    it('third after gc 1', function () {
      console.error('second it')
    })
  })

  describe('child 2', function () {
    console.error('in child 2')
    it('first z', function () {
      console.error('first it')
    })
    it('second', function (done) {
      console.error('second it')
      setTimeout(done)
    })
    it('third', function (done) {
      console.error('third it')
      done()
    })
  })

  it('third', function () {
    console.error('second it')
  })
})