2013-10-10 26 views
1

我的测试代码对象#<Object>有没有方法“类型”

var strategy = require('../lib'); 
var should = require("should"); 
describe('passport-twitter', function() { 

    it('should export Strategy constructor directly from package', function() { 
    console.log('strategy is',strategy); 
    strategy.should.have.type('function'); 
    }); 

    it('should export Strategy constructor', function() { 
    strategy.Strategy.should.have.type('function'); 
    }); 

}); 

,当我运行此test.it是给我错误

1) passport-twitter should export Strategy constructor directly from package: 
    TypeError: Object #<Object> has no method 'type' 
     at Context.<anonymous> (/home/ritesh/projects/passport-topcoder/test/module.test.js:7:26) 
     at Test.Runnable.run (/usr/local/lib/node_modules/mocha/lib/runnable.js:211:32) 
     at Runner.runTest (/usr/local/lib/node_modules/mocha/lib/runner.js:358:10) 
     at /usr/local/lib/node_modules/mocha/lib/runner.js:404:12 
     at next (/usr/local/lib/node_modules/mocha/lib/runner.js:284:14) 
     at /usr/local/lib/node_modules/mocha/lib/runner.js:293:7 
     at next (/usr/local/lib/node_modules/mocha/lib/runner.js:237:23) 
     at Object._onImmediate (/usr/local/lib/node_modules/mocha/lib/runner.js:261:5) 
     at processImmediate [as _immediateCallback] (timers.js:330:15) 

    2) passport-twitter should export Strategy constructor: 
    TypeError: Object #<Object> has no method 'type' 
     at Context.<anonymous> (/home/ritesh/projects/passport-topcoder/test/module.test.js:11:35) 
     at Test.Runnable.run (/usr/local/lib/node_modules/mocha/lib/runnable.js:211:32) 
     at Runner.runTest (/usr/local/lib/node_modules/mocha/lib/runner.js:358:10) 
     at /usr/local/lib/node_modules/mocha/lib/runner.js:404:12 
     at next (/usr/local/lib/node_modules/mocha/lib/runner.js:284:14) 
     at /usr/local/lib/node_modules/mocha/lib/runner.js:293:7 
     at next (/usr/local/lib/node_modules/mocha/lib/runner.js:237:23) 
     at Object._onImmediate (/usr/local/lib/node_modules/mocha/lib/runner.js:261:5) 
     at processImmediate [as _immediateCallback] (timers.js:330:15) 

但在文件中指定类型的方法如何摆脱这个错误。请帮助一下。

,而不是这个当我尝试运行

AA

var strategy = require('..'); 
var should = require("should"); 
describe('passport-twitter', function() { 

    it('should export', function() { 
    console.log('strategy is',strategy); 
    'xxxx'.should.have.type('function'); 
    }); 

}); 

还是我得到的错误

1) passport-twitter should export: 
    TypeError: Object #<Object> has no method 'type' 
     at Context.<anonymous> (/home/ritesh/projects/passport-topcoder/test/module.test.js:7:23) 
     at Test.Runnable.run (/usr/local/lib/node_modules/mocha/lib/runnable.js:211:32) 
     at Runner.runTest (/usr/local/lib/node_modules/mocha/lib/runner.js:358:10) 
     at /usr/local/lib/node_modules/mocha/lib/runner.js:404:12 
     at next (/usr/local/lib/node_modules/mocha/lib/runner.js:284:14) 
     at /usr/local/lib/node_modules/mocha/lib/runner.js:293:7 
     at next (/usr/local/lib/node_modules/mocha/lib/runner.js:237:23) 
     at Object._onImmediate (/usr/local/lib/node_modules/mocha/lib/runner.js:261:5) 
     at processImmediate [as _immediateCallback] (timers.js:330:15) 
+0

它是不知道你需要什么到战略变量 –

+0

在控制台日志策略{版本不清: '1.0.0', 策略: {[功能:策略] super_:{[功能:OAuth2Strategy] super_:[函数:策略]}}}我们得到这个。 –

+0

甚至当我更新时,它给了我一个字符串相同的错误 – Nitin

回答

相关问题