<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test/ngScenario, branch v1.1.4</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>feat(Scenario): autodisable animations when running e2e tests</title>
<updated>2013-04-04T00:40:15+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-04-03T21:36:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fec4ef38815340e8e5a6b65fd6c08f5c74e701d8'/>
<id>fec4ef38815340e8e5a6b65fd6c08f5c74e701d8</id>
<content type='text'>
animations cause the dom to contain elements that have been removed
from the model but are being animated out.

we could teach the e2e runner to wait for animations but that would
make all tests slower. it should be quite safe to just disable
animations automatically when the app is running via the e2e test
runner.

this change disables only css animations. we should make additional
change that disables js animations as well, but since we don't need
this right now I'm punting on it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
animations cause the dom to contain elements that have been removed
from the model but are being animated out.

we could teach the e2e runner to wait for animations but that would
make all tests slower. it should be quite safe to just disable
animations automatically when the app is running via the e2e test
runner.

this change disables only css animations. we should make additional
change that disables js animations as well, but since we don't need
this right now I'm punting on it.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(scenario): include error messages in XML output</title>
<updated>2013-02-07T12:09:52+00:00</updated>
<author>
<name>Julie</name>
</author>
<published>2012-10-09T18:13:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d46fe3c23fa269dcc10249148f2af14f3db6b066'/>
<id>d46fe3c23fa269dcc10249148f2af14f3db6b066</id>
<content type='text'>
Fix the XML output of scenario tests so that it properly includes error
messages from failing specs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the XML output of scenario tests so that it properly includes error
messages from failing specs.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(scenario): add mouseover method to the ngScenario dsl</title>
<updated>2013-01-19T05:24:57+00:00</updated>
<author>
<name>Pedro Del Gallego</name>
</author>
<published>2013-01-19T05:24:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2f437e89781cb2b449abb685e36b26ca1cf0fff5'/>
<id>2f437e89781cb2b449abb685e36b26ca1cf0fff5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(scenario): don't trigger input events on IE9</title>
<updated>2013-01-17T07:26:36+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-01-16T18:51:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8b9e6c3501746edb2c9e2d585e8e0eaeb8ba8327'/>
<id>8b9e6c3501746edb2c9e2d585e8e0eaeb8ba8327</id>
<content type='text'>
input.enter() should trigger 'change' rather than 'input' event on IE9 because
input events on IE9 are broken and angular doesn't rely on them
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
input.enter() should trigger 'change' rather than 'input' event on IE9 because
input events on IE9 are broken and angular doesn't rely on them
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(e2eRunner): fail when an option to select does not exist</title>
<updated>2012-12-01T19:05:42+00:00</updated>
<author>
<name>Stephane Bisson</name>
</author>
<published>2012-11-14T04:33:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=15183f3e1fbee031c9595206163962788f98b298'/>
<id>15183f3e1fbee031c9595206163962788f98b298</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(jqLite): fire $destroy event via triggerHandler</title>
<updated>2012-11-26T14:45:04+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-24T00:51:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b9a9f91fbf99b71cfde434b6277f4c7d2533556f'/>
<id>b9a9f91fbf99b71cfde434b6277f4c7d2533556f</id>
<content type='text'>
in jQuery 1.8.x the data() data structure is changed and events are
not accessible via data().events. Since all we need is to trigger
all event handlers, we can do so via triggerHandler() api instead of
mocking with the internal jQuery data structures.

This fix was originally proposed by PeteAppleton via PR #1512.

Closes #1512
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
in jQuery 1.8.x the data() data structure is changed and events are
not accessible via data().events. Since all we need is to trigger
all event handlers, we can do so via triggerHandler() api instead of
mocking with the internal jQuery data structures.

This fix was originally proposed by PeteAppleton via PR #1512.

Closes #1512
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(scenario-runner): support data-ng and x-ng based attributes</title>
<updated>2012-10-31T20:58:13+00:00</updated>
<author>
<name>Adam Macejak</name>
</author>
<published>2012-10-30T01:54:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=249a1d84e7ac3b8528d317b8b0a80acb5dd9a271'/>
<id>249a1d84e7ac3b8528d317b8b0a80acb5dd9a271</id>
<content type='text'>
Prefixed attributes like data-ng-model and x-ng-model were not being
found by the Selector. It was only looking at ng: and ng- prefixed
attributes.
Added a few tests as well to ensure the aforementioned prefixed
attributes are being matched properly.

Closes #1020
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prefixed attributes like data-ng-model and x-ng-model were not being
found by the Selector. It was only looking at ng: and ng- prefixed
attributes.
Added a few tests as well to ensure the aforementioned prefixed
attributes are being matched properly.

Closes #1020
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(scenario): add dblclick method to the ngScenario dsl</title>
<updated>2012-09-06T23:06:24+00:00</updated>
<author>
<name>Pedro Del Gallego</name>
</author>
<published>2012-08-29T13:39:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8cb9c99ec064fd95567118d29bfa4a19b8613ab3'/>
<id>8cb9c99ec064fd95567118d29bfa4a19b8613ab3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(scenario): Adding meta tag to avoid cache issues</title>
<updated>2012-08-30T22:36:42+00:00</updated>
<author>
<name>German Galvis</name>
</author>
<published>2012-08-15T22:04:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5318588d6e8ee9a31f4002affd6858d25305aabf'/>
<id>5318588d6e8ee9a31f4002affd6858d25305aabf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(e2eRunner): $browser.location should delegate to apps $location</title>
<updated>2012-04-12T09:36:03+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-12T09:15:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=df72852f3496d7640bb4f70837338e464b7ed69f'/>
<id>df72852f3496d7640bb4f70837338e464b7ed69f</id>
<content type='text'>
previously it would create a new instance which wasn't configured as the one in the app,
which resulted in incorrect values being returned in html5 mode with base url set
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
previously it would create a new instance which wasn't configured as the one in the app,
which resulted in incorrect values being returned in html5 mode with base url set
</pre>
</div>
</content>
</entry>
</feed>
