Skip to content

Commit

Permalink
Use full assertion names in describe blocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjeffburke committed Nov 5, 2020
1 parent 01792d9 commit bdf3ef2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/assertions/Map.to-be-empty.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* global expect */
describe('empty assertion', () => {
describe('to be empty assertion', () => {
it('asserts a Map is empty', () => {
expect(new Map(), 'to be empty');
});
Expand Down
2 changes: 1 addition & 1 deletion test/assertions/Map.to-have-size.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* global expect */
describe('size assertion', () => {
describe('to have size assertion', () => {
it('asserts a Map has a specific size', () => {
expect(new Map([['foo', 'bar']]), 'to have size', 1);
});
Expand Down

0 comments on commit bdf3ef2

Please sign in to comment.