You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/lifecycle-render-order/_config.js

13 lines
219 B

import order from './order.js';
export default {
skip_if_ssr: true,
before_test() {
order.length = 0;
},
test({ assert }) {
assert.deepEqual(order, ['beforeUpdate', 'render', 'onMount', 'afterUpdate']);
}
};