Misko Hevery
|
352dbfa38f
|
upgraded jasmine to 1.0.1
Close #63
|
2010-10-17 21:13:28 -07:00 |
|
Elliott Sprehn
|
03df6cbddb
|
New Angular Scenario runner and DSL system with redesigned HTML UI.
Uses the Jasmine syntax for tests, ex:
describe('widgets', function() {
it('should verify that basic widgets work', function(){
navigateTo('widgets.html');
input('text.basic').enter('Carlos');
expect(binding('text.basic')).toEqual('Carlos');
input('text.basic').enter('Carlos Santana');
expect(binding('text.basic')).not().toEqual('Carlos Boozer');
input('text.password').enter('secret');
expect(binding('text.password')).toEqual('secret');
expect(binding('text.hidden')).toEqual('hiddenValue');
expect(binding('gender')).toEqual('male');
input('gender').select('female');
expect(binding('gender')).toEqual('female');
});
});
Note: To create new UI's implement the interface shown in angular.scenario.ui.Html.
|
2010-10-14 09:47:39 -07:00 |
|
Shyam Seshadri
|
84b3a1774e
|
fix the other jstest driver conf
|
2010-08-12 04:34:13 +08:00 |
|
Misko Hevery
|
03aac8b0ab
|
fix broken build, fix #autobind and css loading
|
2010-07-29 15:26:10 -07:00 |
|
Andres Ornelas
|
0d41c86522
|
fixed broken jstd conf file
|
2010-05-26 15:17:28 -07:00 |
|
Andres Ornelas
|
3fab5d9879
|
added error handling on scenario definition
|
2010-05-24 15:25:30 -07:00 |
|
Andres Ornelas Mesta
|
f6c67e28c9
|
happy
|
2010-05-24 13:54:32 -07:00 |
|
Misko Hevery
|
5215e2095c
|
basic end to end runner
|
2010-05-20 15:55:41 -07:00 |
|
Misko Hevery
|
8b63c2c4e6
|
added jquery configuration for JSTD
|
2010-04-22 21:15:58 -07:00 |
|