summaryrefslogtreecommitdiff
path: root/spec/javascripts/notebook/cells/output/html_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/notebook/cells/output/html_spec.js')
-rw-r--r--spec/javascripts/notebook/cells/output/html_spec.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/spec/javascripts/notebook/cells/output/html_spec.js b/spec/javascripts/notebook/cells/output/html_spec.js
deleted file mode 100644
index 3ee404fb187..00000000000
--- a/spec/javascripts/notebook/cells/output/html_spec.js
+++ /dev/null
@@ -1,31 +0,0 @@
-import Vue from 'vue';
-import htmlOutput from '~/notebook/cells/output/html.vue';
-import sanitizeTests from './html_sanitize_tests';
-
-describe('html output cell', () => {
- function createComponent(rawCode) {
- const Component = Vue.extend(htmlOutput);
-
- return new Component({
- propsData: {
- rawCode,
- count: 0,
- index: 0,
- },
- }).$mount();
- }
-
- describe('sanitizes output', () => {
- Object.keys(sanitizeTests).forEach(key => {
- it(key, () => {
- const test = sanitizeTests[key];
- const vm = createComponent(test.input);
- const outputEl = [...vm.$el.querySelectorAll('div')].pop();
-
- expect(outputEl.innerHTML).toEqual(test.output);
-
- vm.$destroy();
- });
- });
- });
-});