describe('A test', () => {

it("isn't really a test", () => {
  1 + 1;
});
it('is only here to create output', () => {
  2 + 2;
});
it('runs through and generates data', () => {
  throw new Error('to check that reporting is sorta working');
});
it('handles pending stuff as well');

});