Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
kommander committed May 11, 2017
1 parent 380c5f9 commit f4beecc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/extension.spec.js
Expand Up @@ -24,9 +24,9 @@ describe('Extension API', () => {
it('exposes extend/hook only through use()');

describe('use()', () => {
it('calls the extension method with Cannot', (done) => {
const ext = (Cannot) => {
expect(Cannot).to.be.a('function');
it('calls the extension method with Broken', (done) => {
const ext = (Broken) => {
expect(Broken).to.be.a('function');
expect(cannot).to.have.property('use');
expect(cannot).to.have.property('extend');
expect(cannot).to.have.property('hook');
Expand Down

0 comments on commit f4beecc

Please sign in to comment.