|
110 | 110 | 'test/js/timeline.js',
|
111 | 111 | 'test/js/web-animations-next-animation.js');
|
112 | 112 |
|
| 113 | + var webAnimations1WebPlatformTests = [ |
| 114 | + 'test/web-platform-tests/web-animations/animation-model/animation-types/discrete-animation.html', |
| 115 | + 'test/web-platform-tests/web-animations/animation-model/keyframe-effects/effect-value-context.html', |
| 116 | + 'test/web-platform-tests/web-animations/animation-model/keyframe-effects/the-effect-value-of-a-keyframe-effect.html', |
| 117 | + 'test/web-platform-tests/web-animations/interfaces/Animatable/animate-basic.html', |
| 118 | + 'test/web-platform-tests/web-animations/interfaces/Animation/cancel.html', |
| 119 | + 'test/web-platform-tests/web-animations/interfaces/Animation/id.html', |
| 120 | + 'test/web-platform-tests/web-animations/interfaces/Animation/pause.html', |
| 121 | + 'test/web-platform-tests/web-animations/interfaces/Animation/play.html', |
| 122 | + 'test/web-platform-tests/web-animations/interfaces/Animation/playState.html', |
| 123 | + 'test/web-platform-tests/web-animations/interfaces/Animation/startTime.html', |
| 124 | + 'test/web-platform-tests/web-animations/interfaces/KeyframeEffect/effect-easing.html', |
| 125 | + 'test/web-platform-tests/web-animations/timing-model/animation-effects/active-time.html', |
| 126 | + 'test/web-platform-tests/web-animations/timing-model/animation-effects/simple-iteration-progress.html', |
| 127 | + ]; |
| 128 | + |
| 129 | + var webAnimationsNextWebPlatformTests = [ |
| 130 | + 'test/web-platform-tests/web-animations/**/*.html', |
| 131 | + ]; |
| 132 | + |
113 | 133 | // This object specifies the source and test files for different Web Animation build targets.
|
114 | 134 | var targetConfig = {
|
115 | 135 | 'web-animations': {
|
|
120 | 140 | webAnimationsNextSrc: [],
|
121 | 141 | src: scopeSrc.concat(sharedSrc).concat(webAnimations1Src).concat(webAnimations1BonusSrc),
|
122 | 142 | polyfillTests: webAnimations1PolyfillTests,
|
123 |
| - runWebPlatformTests: false, |
| 143 | + webPlatformTests: webAnimations1WebPlatformTests, |
124 | 144 | },
|
125 | 145 | 'web-animations-next': {
|
126 | 146 | scopeSrc: scopeSrc,
|
|
130 | 150 | webAnimationsNextSrc: webAnimationsNextSrc,
|
131 | 151 | src: scopeSrc.concat(sharedSrc).concat(webAnimations1Src).concat(webAnimations1BonusSrc).concat(webAnimationsNextSrc),
|
132 | 152 | polyfillTests: webAnimationsNextPolyfillTests,
|
133 |
| - runWebPlatformTests: true, |
| 153 | + webPlatformTests: webAnimationsNextWebPlatformTests, |
134 | 154 | },
|
135 | 155 | 'web-animations-next-lite': {
|
136 | 156 | scopeSrc: scopeSrc,
|
|
140 | 160 | webAnimationsNextSrc: webAnimationsNextSrc,
|
141 | 161 | src: scopeSrc.concat(sharedSrc).concat(liteWebAnimations1Src).concat(webAnimations1BonusSrc).concat(webAnimationsNextSrc),
|
142 | 162 | polyfillTests: [],
|
143 |
| - runWebPlatformTests: false, |
| 163 | + webPlatformTests: [], |
144 | 164 | },
|
145 | 165 | };
|
146 | 166 |
|
|
0 commit comments