aboutsummaryrefslogtreecommitdiffstats
path: root/jsTestDriver.conf
AgeCommit message (Collapse)Author
2010-10-14New Angular Scenario runner and DSL system with redesigned HTML UI.Elliott Sprehn
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-08-12Fix toEqual matcher to use angular.equals instead of simple == comparison, ↵Shyam Seshadri
which breaks down for arrays and objects
2010-07-29fix broken build, fix #autobind and css loadingMisko Hevery
2010-05-26fixed broken jstd conf fileAndres Ornelas
2010-05-24added error handling on scenario definitionAndres Ornelas
2010-05-24happyAndres Ornelas Mesta
2010-05-20basic end to end runnerMisko Hevery
2010-04-22tests work under jquery and withoutMisko Hevery
2010-04-22working on jQuery passing testsMisko Hevery
2010-04-09various bug fixesMisko Hevery
2010-04-05added ng:switch widgetMisko Hevery
2010-03-29dissabled a lot of tests, and made the core test set pass.Misko Hevery
2010-03-22upgraded jquery to 1.4.2 and made ng-action work with jqueryMisko Hevery
2010-03-16make xhr just a methodAdam Abrons
2010-03-15added resources; removed compiled codeMisko Hevery
2010-01-29added bootstrap, fixed formatterMisko Hevery
2010-01-25fix jquery version in jstd.confMisko Hevery
2010-01-24changes to make it closure compiler compatibleMisko Hevery
2010-01-23lots of cleanup to get it ready for OSMisko Hevery
2010-01-18checkpoint for integration with angularMisko Hevery
2010-01-09removed nglr namespaceMisko Hevery
2010-01-08created a way to init the code without autobootstrapMisko Hevery
2010-01-05angular.jsAdam Abrons