You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							26 lines
						
					
					
						
							775 B
						
					
					
				
			
		
		
	
	
							26 lines
						
					
					
						
							775 B
						
					
					
				| var jwt = require('../index');
 | |
| var expect = require('chai').expect;
 | |
| var JsonWebTokenError = require('../lib/JsonWebTokenError');
 | |
| 
 | |
| describe('non_object_values values', function() {
 | |
| 
 | |
|   it('should work with string', function () {
 | |
|     var token = jwt.sign('hello', '123');
 | |
|     var result = jwt.verify(token, '123');
 | |
|     expect(result).to.equal('hello');
 | |
|   });
 | |
| 
 | |
|   it('should fail to validate audience when the payload is string', function () {
 | |
|     var token = jwt.sign('hello', '123');
 | |
|     expect(function () {
 | |
|       jwt.verify(token, '123', { audience: 'foo' });
 | |
|     }).to.throw(JsonWebTokenError);
 | |
|   });
 | |
| 
 | |
|   it('should work with number', function () {
 | |
|     var token = jwt.sign(123, '123');
 | |
|     var result = jwt.verify(token, '123');
 | |
|     expect(result).to.equal('123');
 | |
|   });
 | |
| 
 | |
| }); |