mirror of https://github.com/sveltejs/svelte
commit
04c7705e51
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,5 @@
|
|||||||
|
{value}
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export let value = 'Loading...';
|
||||||
|
</script>
|
@ -0,0 +1,29 @@
|
|||||||
|
export default {
|
||||||
|
async test({ assert, component, target }) {
|
||||||
|
let resolve, reject;
|
||||||
|
let promise = new Promise(ok => resolve = ok);
|
||||||
|
|
||||||
|
component.promise = promise;
|
||||||
|
assert.htmlEqual(target.innerHTML, 'Loading...');
|
||||||
|
|
||||||
|
resolve(42);
|
||||||
|
await promise;
|
||||||
|
assert.htmlEqual(target.innerHTML, '42');
|
||||||
|
|
||||||
|
promise = new Promise((ok, fail) => reject = fail);
|
||||||
|
component.promise = promise;
|
||||||
|
assert.htmlEqual(target.innerHTML, 'Loading...');
|
||||||
|
|
||||||
|
reject(99);
|
||||||
|
await promise.then(null, () => {});
|
||||||
|
assert.htmlEqual(target.innerHTML, '99');
|
||||||
|
|
||||||
|
promise = new Promise(ok => resolve = ok);
|
||||||
|
component.promise = promise;
|
||||||
|
assert.htmlEqual(target.innerHTML, 'Loading...');
|
||||||
|
|
||||||
|
resolve(1);
|
||||||
|
await promise;
|
||||||
|
assert.htmlEqual(target.innerHTML, '1');
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,12 @@
|
|||||||
|
{#await promise}
|
||||||
|
<Widget />
|
||||||
|
{:then result}
|
||||||
|
<Widget value="{result}" />
|
||||||
|
{:catch err}
|
||||||
|
<Widget value="{err}" />
|
||||||
|
{/await}
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Widget from './Widget.html';
|
||||||
|
export let promise = Promise.resolve();
|
||||||
|
</script>
|
@ -0,0 +1,3 @@
|
|||||||
|
export default {
|
||||||
|
html: '(alpaca)(baboon)(capybara)'
|
||||||
|
};
|
@ -0,0 +1,8 @@
|
|||||||
|
{#each animals as animal}
|
||||||
|
({animal})
|
||||||
|
{/each}
|
||||||
|
|
||||||
|
<script>
|
||||||
|
let animal = 'lemur';
|
||||||
|
let animals = ['alpaca', 'baboon', 'capybara'];
|
||||||
|
</script>
|
@ -0,0 +1,3 @@
|
|||||||
|
export default {
|
||||||
|
html: `<p>(42)(99)</p>`
|
||||||
|
};
|
@ -0,0 +1,9 @@
|
|||||||
|
<script context="module">
|
||||||
|
const foo = 42;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export let bar = 99;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<p>({foo})({bar})</p>
|
Loading…
Reference in new issue