<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test/scenario, branch v0.9.16</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>added input#val method</title>
<updated>2011-06-06T19:49:46+00:00</updated>
<author>
<name>Di Peng</name>
</author>
<published>2011-06-05T18:44:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9fdb09ebf86f4bc85ded08371fbafbab75aba8bf'/>
<id>9fdb09ebf86f4bc85ded08371fbafbab75aba8bf</id>
<content type='text'>
Closes #237
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #237
</pre>
</div>
</content>
</entry>
<entry>
<title>renamed $pause to $sleep AND $wait to $pause</title>
<updated>2011-06-05T19:00:45+00:00</updated>
<author>
<name>Di Peng</name>
</author>
<published>2011-06-03T22:22:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1eebb771e3940ddd6640ddc064d5fa6e539c536d'/>
<id>1eebb771e3940ddd6640ddc064d5fa6e539c536d</id>
<content type='text'>
Closes #207
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #207
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix CSS tests on Opera</title>
<updated>2011-06-02T19:51:12+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-06-02T18:15:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9a6967755116f14b6f27fc00b5976b58f0bc6fcd'/>
<id>9a6967755116f14b6f27fc00b5976b58f0bc6fcd</id>
<content type='text'>
Opera translates name colors to numbers (red -&gt; #ff0000)
Other browsers like FF or Chrome translate number to rgb (#ff0000 -&gt; rgb(255, 0, 0)
So avoiding colors in tests is probably the easiest solution...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Opera translates name colors to numbers (red -&gt; #ff0000)
Other browsers like FF or Chrome translate number to rgb (#ff0000 -&gt; rgb(255, 0, 0)
So avoiding colors in tests is probably the easiest solution...
</pre>
</div>
</content>
</entry>
<entry>
<title>JSTD adapter for running e2e tests</title>
<updated>2011-05-19T16:43:56+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-05-19T15:33:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1abdc097b235366759a889bdcc68359653a9b8a3'/>
<id>1abdc097b235366759a889bdcc68359653a9b8a3</id>
<content type='text'>
Couple of changes into angular.scenario runner:
 - add autotest config (runs tests when document ready)
 - update ObjectModel (forwards events)
 - use only one ObjectModel instance for all outputters
 - expose error msg and line number in ObjectModel.Spec and ObjectModel.Step
 - fix generating spec.ids
 - fix 'html' output so that it does not mutate ObjectModel

Couple of changes into docs / generator:
 - rename copy -&gt; copyTpl
 - move docs/static into docs/examples (to avoid conflict with jstd proxy)

Running all docs e2e tests:
========================================================
1/ compile angular-scenario, jstd-scenario-adapter
&gt;&gt; rake compile

2/ build docs
&gt;&gt; rake docs

3/ start jstd server
&gt;&gt; ./server-scenario.sh

4/ capture some browser

5/ run node server to serve static content
&gt;&gt; node ../lib/nodeserver/server.js

6/ run tests
&gt;&gt; ./test-scenario.sh
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Couple of changes into angular.scenario runner:
 - add autotest config (runs tests when document ready)
 - update ObjectModel (forwards events)
 - use only one ObjectModel instance for all outputters
 - expose error msg and line number in ObjectModel.Spec and ObjectModel.Step
 - fix generating spec.ids
 - fix 'html' output so that it does not mutate ObjectModel

Couple of changes into docs / generator:
 - rename copy -&gt; copyTpl
 - move docs/static into docs/examples (to avoid conflict with jstd proxy)

Running all docs e2e tests:
========================================================
1/ compile angular-scenario, jstd-scenario-adapter
&gt;&gt; rake compile

2/ build docs
&gt;&gt; rake docs

3/ start jstd server
&gt;&gt; ./server-scenario.sh

4/ capture some browser

5/ run node server to serve static content
&gt;&gt; node ../lib/nodeserver/server.js

6/ run tests
&gt;&gt; ./test-scenario.sh
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't check url (by HEAD request) before navigateTo</title>
<updated>2011-05-19T16:43:56+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-04-29T21:38:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c5f0342ad87ba91d43e8b99bfc82039cdbf998a2'/>
<id>c5f0342ad87ba91d43e8b99bfc82039cdbf998a2</id>
<content type='text'>
Removed angular.scenario.Application.checkUrlStatus_ method and these tests:
* should call error handler if status check fails
* should perform a HEAD request to verify file existence
* should call error handler if status code is less than 200
* should call error handler if status code is greater than 299
* should call error handler if status code is greater than 299
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Removed angular.scenario.Application.checkUrlStatus_ method and these tests:
* should call error handler if status check fails
* should perform a HEAD request to verify file existence
* should call error handler if status code is less than 200
* should call error handler if status code is greater than 299
* should call error handler if status code is greater than 299
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some typos, missing semi-colons, etc...</title>
<updated>2011-04-25T15:17:17+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-04-19T22:24:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f85c82acd623e63f23a4f3ebba239280f14e380b'/>
<id>f85c82acd623e63f23a4f3ebba239280f14e380b</id>
<content type='text'>
This is a combination of 4 commits:
* Fix some small typos, missing semi-colons, etc.
* Fix comment for angular.scenario.SpecRunner.run method
* Fixed some missing semi-colons in cookbook
* Fixed missing semi-colon in nodeserver/server.js
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a combination of 4 commits:
* Fix some small typos, missing semi-colons, etc.
* Fix comment for angular.scenario.SpecRunner.run method
* Fixed some missing semi-colons in cookbook
* Fixed missing semi-colon in nodeserver/server.js
</pre>
</div>
</content>
</entry>
<entry>
<title>fix e2e runner tests</title>
<updated>2011-04-08T17:16:56+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-04-08T17:16:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8e6ecd98ae5ef24a7398aee19c006b9dda5385ff'/>
<id>8e6ecd98ae5ef24a7398aee19c006b9dda5385ff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed example rendering, add tests for it.</title>
<updated>2011-01-24T22:23:51+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-01-19T23:42:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c2f2587a79aeb77aad66f081cf924a79348a698e'/>
<id>c2f2587a79aeb77aad66f081cf924a79348a698e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename angular.foreach to angular.forEach to make the api consistent.</title>
<updated>2011-01-10T18:26:55+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-01-08T06:02:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0a6cf70debc6440685af3f9ea96a66450e4f4ed7'/>
<id>0a6cf70debc6440685af3f9ea96a66450e4f4ed7</id>
<content type='text'>
camelcase is used for other angular functions and forEach is also
used by EcmaScript standard.

- rename the internal as well as the external function name
- tweak the implementation of the function so that it doesn't
  clober it self when we extend the angular object with an
  object that has a forEach property equal to this forEach function

Closes #85
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
camelcase is used for other angular functions and forEach is also
used by EcmaScript standard.

- rename the internal as well as the external function name
- tweak the implementation of the function so that it doesn't
  clober it self when we extend the angular object with an
  object that has a forEach property equal to this forEach function

Closes #85
</pre>
</div>
</content>
</entry>
<entry>
<title>Support substring matching of bindings with repeater(). Closes #123</title>
<updated>2010-11-09T21:39:12+00:00</updated>
<author>
<name>Elliott Sprehn</name>
</author>
<published>2010-11-09T07:26:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=257e97a65f7dd794faa5d8c0d72bbd5a894cb471'/>
<id>257e97a65f7dd794faa5d8c0d72bbd5a894cb471</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
