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 |
|
Misko Hevery
|
27868f17de
|
cleanup underscore.js form rakefile
|
2010-09-23 13:53:38 +02:00 |
|
Misko Hevery
|
5992e81b2e
|
added rake task to create a single file for scenario runner
|
2010-05-25 14:23:52 -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
|
9f9bdcf3d1
|
lint
|
2010-04-19 14:41:36 -07:00 |
|
Misko Hevery
|
1b976dc27d
|
tweeter demo script
|
2010-03-23 15:18:32 -07:00 |
|
Adam Abrons
|
39c6c5975b
|
get scenarios running again - open Runner.html in a browser to run them
|
2010-03-15 17:02:54 -07:00 |
|