mirror of https://github.com/sveltejs/svelte
parent
0b0d468ed1
commit
cd2ee2519d
@ -1,10 +1,8 @@
|
||||
import { test } from '../../test';
|
||||
|
||||
export default test({
|
||||
skip: true,
|
||||
error: {
|
||||
code: '',
|
||||
message:
|
||||
'Stores must be declared at the top level of the component (this may change in a future version of Svelte)'
|
||||
code: 'illegal-store-subscription',
|
||||
message: 'Cannot subscribe to stores that are not declared at the top level of the component'
|
||||
}
|
||||
});
|
||||
|
||||
@ -1,10 +1,8 @@
|
||||
import { test } from '../../test';
|
||||
|
||||
export default test({
|
||||
skip: true,
|
||||
error: {
|
||||
code: '',
|
||||
message:
|
||||
'Stores must be declared at the top level of the component (this may change in a future version of Svelte)'
|
||||
code: 'illegal-store-subscription',
|
||||
message: 'Cannot subscribe to stores that are not declared at the top level of the component'
|
||||
}
|
||||
});
|
||||
|
||||
Loading…
Reference in new issue