chore: remove markdown spec debounce assertion for ci stability

This commit is contained in:
Evan You
2021-05-07 09:05:19 -04:00
parent 75264b2ae5
commit 5db594f0e5
3 changed files with 6 additions and 6 deletions

View File

@@ -8,8 +8,6 @@
</div>
<script>
const delay = window.location.hash === '#test' ? 16 : 500
Vue.createApp({
data: () => ({
input: '# hello'
@@ -22,7 +20,7 @@ Vue.createApp({
methods: {
update: _.debounce(function (e) {
this.input = e.target.value
}, delay)
}, 50)
}
}).mount('#editor')
</script>