angular.js/scenario
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
..
application-account.html change all attributes from ng- to ng: prefix 2010-07-02 15:39:57 -07:00
application.html change all attributes from ng- to ng: prefix 2010-07-02 15:39:57 -07:00
browser.html Refactored the Browser: 2010-09-22 16:17:44 +02:00
datastore-scenarios.js get scenarios running again - open Runner.html in a browser to run them 2010-03-15 17:02:54 -07:00
datastore.html change all attributes from ng- to ng: prefix 2010-07-02 15:39:57 -07:00
location.html fix up the $location encoding 2010-07-30 10:56:36 -07:00
perf.html change all attributes from ng- to ng: prefix 2010-07-02 15:39:57 -07:00
Runner-compiled.html added rake task to create a single file for scenario runner 2010-05-25 14:23:52 -07:00
Runner.html added error handling on scenario definition 2010-05-24 15:25:30 -07:00
style.css New Angular Scenario runner and DSL system with redesigned HTML UI. 2010-10-14 09:47:39 -07:00
widgets-scenario.js New Angular Scenario runner and DSL system with redesigned HTML UI. 2010-10-14 09:47:39 -07:00
widgets.html Refactored the Browser: 2010-09-22 16:17:44 +02:00