Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-04-11 23:25:10 +0300
committerPhil Hughes <me@iamphill.com>2017-04-11 23:25:10 +0300
commitbf5248ac28bf817344a8b1b4feda744a0832d32d (patch)
tree30bf3bf7d944f81f173c9d3a92db850b66b68556 /spec/javascripts/notebook
parent310495575db81bf9a3a3afaee6f19a4a2639b8d8 (diff)
Pull in fixture files from the repo
Diffstat (limited to 'spec/javascripts/notebook')
-rw-r--r--spec/javascripts/notebook/cells/code_spec.js6
-rw-r--r--spec/javascripts/notebook/cells/markdown_spec.js8
-rw-r--r--spec/javascripts/notebook/cells/output/index_spec.js6
-rw-r--r--spec/javascripts/notebook/index_spec.js9
4 files changed, 23 insertions, 6 deletions
diff --git a/spec/javascripts/notebook/cells/code_spec.js b/spec/javascripts/notebook/cells/code_spec.js
index e1df98b70ba..0c432d73f67 100644
--- a/spec/javascripts/notebook/cells/code_spec.js
+++ b/spec/javascripts/notebook/cells/code_spec.js
@@ -1,11 +1,15 @@
import Vue from 'vue';
import CodeComponent from '~/notebook/cells/code.vue';
-import json from '../../fixtures/notebook/file.json';
const Component = Vue.extend(CodeComponent);
describe('Code component', () => {
let vm;
+ let json;
+
+ beforeEach(() => {
+ json = getJSONFixture('blob/notebook/basic.json');
+ });
describe('without output', () => {
beforeEach((done) => {
diff --git a/spec/javascripts/notebook/cells/markdown_spec.js b/spec/javascripts/notebook/cells/markdown_spec.js
index 5c11272e7e0..38c976f38d8 100644
--- a/spec/javascripts/notebook/cells/markdown_spec.js
+++ b/spec/javascripts/notebook/cells/markdown_spec.js
@@ -1,14 +1,18 @@
import Vue from 'vue';
import MarkdownComponent from '~/notebook/cells/markdown.vue';
-import json from '../../fixtures/notebook/file.json';
-const cell = json.cells[1];
const Component = Vue.extend(MarkdownComponent);
describe('Markdown component', () => {
let vm;
+ let cell;
+ let json;
beforeEach((done) => {
+ json = getJSONFixture('blob/notebook/basic.json');
+
+ cell = json.cells[1];
+
vm = new Component({
propsData: {
cell,
diff --git a/spec/javascripts/notebook/cells/output/index_spec.js b/spec/javascripts/notebook/cells/output/index_spec.js
index 7fe8d227f05..dbf79f85c7c 100644
--- a/spec/javascripts/notebook/cells/output/index_spec.js
+++ b/spec/javascripts/notebook/cells/output/index_spec.js
@@ -1,11 +1,11 @@
import Vue from 'vue';
import CodeComponent from '~/notebook/cells/output/index.vue';
-import json from '../../../fixtures/notebook/file.json';
const Component = Vue.extend(CodeComponent);
describe('Output component', () => {
let vm;
+ let json;
const createComponent = (output) => {
vm = new Component({
@@ -17,6 +17,10 @@ describe('Output component', () => {
vm.$mount();
};
+ beforeEach(() => {
+ json = getJSONFixture('blob/notebook/basic.json');
+ });
+
describe('text output', () => {
beforeEach((done) => {
createComponent(json.cells[2].outputs[0]);
diff --git a/spec/javascripts/notebook/index_spec.js b/spec/javascripts/notebook/index_spec.js
index 87f18b98342..bd63ab35426 100644
--- a/spec/javascripts/notebook/index_spec.js
+++ b/spec/javascripts/notebook/index_spec.js
@@ -1,12 +1,17 @@
import Vue from 'vue';
import Notebook from '~/notebook/index.vue';
-import json from '../fixtures/notebook/file.json';
-import jsonWithWorksheet from '../fixtures/notebook/worksheets.json';
const Component = Vue.extend(Notebook);
describe('Notebook component', () => {
let vm;
+ let json;
+ let jsonWithWorksheet;
+
+ beforeEach(() => {
+ json = getJSONFixture('blob/notebook/basic.json');
+ jsonWithWorksheet = getJSONFixture('blob/notebook/worksheets.json');
+ });
describe('without JSON', () => {
beforeEach((done) => {