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,14 +8,13 @@
</div>
<script>
const delay = window.location.hash === '#test' ? 16 : 500
const { ref, computed } = Vue
Vue.createApp({
setup() {
const input = ref('# hello')
const output = computed(() => marked(input.value, { sanitize: true }))
const update = _.debounce(e => { input.value = e.target.value }, delay)
const update = _.debounce(e => { input.value = e.target.value }, 50)
return {
input,