mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-18 05:25:08 +00:00
fix child.segment bug
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
<span>y: {segment} {count}</span>
|
||||
<svelte:component this={child.component} {...child.props}/>
|
||||
|
||||
<span>child segment: {child.segment}</span>
|
||||
|
||||
<script>
|
||||
import counts from '../_counts.js';
|
||||
|
||||
|
||||
@@ -630,7 +630,8 @@ function run({ mode, basepath = '' }) {
|
||||
.then(text => {
|
||||
assert.deepEqual(text.split('\n').filter(Boolean), [
|
||||
'y: bar 1',
|
||||
'z: baz 1'
|
||||
'z: baz 1',
|
||||
'child segment: baz'
|
||||
]);
|
||||
|
||||
return nightmare.click(`a`)
|
||||
@@ -642,7 +643,8 @@ function run({ mode, basepath = '' }) {
|
||||
.then(text => {
|
||||
assert.deepEqual(text.split('\n').filter(Boolean), [
|
||||
'y: bar 1',
|
||||
'z: qux 2'
|
||||
'z: qux 2',
|
||||
'child segment: qux'
|
||||
]);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user