9 lines
		
	
	
		
			145 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			145 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
describe("Jasmine sample test", function() {
 | 
						|
	
 | 
						|
	it("1+1 should be 2", function() {
 | 
						|
		
 | 
						|
		var result = 1 + 1;
 | 
						|
		
 | 
						|
		expect(result).toBe(2);
 | 
						|
	});
 | 
						|
}); |