Skip to content

Commit

Permalink
Details
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpapercut committed Jun 3, 2017
1 parent 8874896 commit a3abbb1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "node-proxygenerator",
"version": "0.0.1",
"description": "Module to help create proxies for ES6 classes",
"description": "Module to help create tracing proxies for ES6 classes",
"keywords": [
"Proxy",
"es6"
"es6",
"tracing"
],
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion test/ProxyGenerator.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ describe('ProxyGenerator', function() {
expect(myClass.getNull()).to.eql(null);
});

it('should catch native functions', () => {
it('should not log native functions', () => {
expect(myClass.hasOwnProperty('_name')).to.be.false;
});

Expand Down

0 comments on commit a3abbb1

Please sign in to comment.