From acbdebe5c3b0fd6a7ba8b2894efab86ba76f3eba Mon Sep 17 00:00:00 2001 From: Dave Lockhart Date: Fri, 4 Aug 2023 12:47:45 -0400 Subject: [PATCH] restore describe --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 20f5003e..a141493c 100644 --- a/README.md +++ b/README.md @@ -25,16 +25,20 @@ Results can be verified using either the BDD-style `expect` or TDD-style `assert ```javascript import { expect } from '@brightspace-ui/testing'; -it('should multiply numbers', () => { - expect(2 * 4).to.equal(8); +describe('group of tests', () => { + it('should multiply numbers', () => { + expect(2 * 4).to.equal(8); + }); }); ``` ```javascript import { assert } from '@brightspace-ui/testing'; -it('should multiply numbers', () => { - assert.equal(2 * 4, 8); +describe('group of tests', () => { + it('should multiply numbers', () => { + assert.equal(2 * 4, 8); + }); }); ```