Skip to content

Commit

Permalink
clean up a spec description
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan Ferrari committed Sep 7, 2022
1 parent 3dca415 commit 8313be6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/strongbus_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ describe('Strongbus.Bus', () => {
bus.pipe(bus2);
});

describe('and no listeners have been added or removed between invocations', () => {
describe('and no delegate listeners have been added or removed between invocations', () => {
it('returns the same reference', () => {
bus.on('foo', onTestEvent);
bus2.on('bar', onTestEvent);
Expand All @@ -1028,7 +1028,7 @@ describe('Strongbus.Bus', () => {
});
});

describe('and a listener is removed from a delegate instance between invocations', () => {
describe('and a listener is removed from a delegate between invocations', () => {
it('cachebusts', () => {
bus.on('foo', onTestEvent);
const sub = bus2.on('bar', onTestEvent);
Expand Down Expand Up @@ -1154,7 +1154,7 @@ describe('Strongbus.Bus', () => {
bus.pipe(bus2);
});

describe('and no listeners have been added or removed between invocations', () => {
describe('and no delegate listeners have been added or removed between invocations', () => {
it('returns the same reference', () => {
bus.on('foo', onTestEvent);
bus2.on('bar', onTestEvent);
Expand All @@ -1176,7 +1176,7 @@ describe('Strongbus.Bus', () => {
});
});

describe('and a listener is removed from a delegate instance between invocations', () => {
describe('and a listener is removed from a delegate between invocations', () => {
it('returns the same reference', () => {
bus.on('foo', onTestEvent);
const sub = bus2.on('bar', onTestEvent);
Expand Down

0 comments on commit 8313be6

Please sign in to comment.