Remove .raw from JavaScript fixture file names
There is nothing more to say but "Commits that change 30 or more lines across at least three files must describe these changes in the commit body"
This commit is contained in:
parent
d2c01153a8
commit
3e9bb4ad31
104 changed files with 146 additions and 148 deletions
|
@ -9,9 +9,6 @@ plugins:
|
|||
- import
|
||||
- html
|
||||
settings:
|
||||
html/html-extensions:
|
||||
- '.html'
|
||||
- '.html.raw'
|
||||
import/resolver:
|
||||
webpack:
|
||||
config: './config/webpack.config.js'
|
||||
|
|
|
@ -110,7 +110,7 @@ module.exports = function(config) {
|
|||
frameworks: ['jasmine'],
|
||||
files: [
|
||||
{ pattern: 'spec/javascripts/test_bundle.js', watched: false },
|
||||
{ pattern: 'spec/javascripts/fixtures/**/*@(.json|.html|.html.raw|.png)', included: false },
|
||||
{ pattern: 'spec/javascripts/fixtures/**/*@(.json|.html|.png)', included: false },
|
||||
],
|
||||
preprocessors: {
|
||||
'spec/javascripts/**/*.js': ['webpack', 'sourcemap'],
|
||||
|
|
|
@ -7,7 +7,7 @@ import Pager from '~/pager';
|
|||
|
||||
describe('Activities', () => {
|
||||
window.gon || (window.gon = {});
|
||||
const fixtureTemplate = 'static/event_filter.html.raw';
|
||||
const fixtureTemplate = 'static/event_filter.html';
|
||||
const filters = [
|
||||
{
|
||||
id: 'all',
|
||||
|
|
|
@ -2,7 +2,7 @@ import $ from 'jquery';
|
|||
import AjaxLoadingSpinner from '~/ajax_loading_spinner';
|
||||
|
||||
describe('Ajax Loading Spinner', () => {
|
||||
const fixtureTemplate = 'static/ajax_loading_spinner.html.raw';
|
||||
const fixtureTemplate = 'static/ajax_loading_spinner.html';
|
||||
preloadFixtures(fixtureTemplate);
|
||||
|
||||
beforeEach(() => {
|
||||
|
|
|
@ -24,13 +24,13 @@ const lazyAssert = function(done, assertFn) {
|
|||
|
||||
describe('AwardsHandler', function() {
|
||||
const emojiData = getJSONFixture('emojis/emojis.json');
|
||||
preloadFixtures('snippets/show.html.raw');
|
||||
preloadFixtures('snippets/show.html');
|
||||
|
||||
beforeEach(function(done) {
|
||||
mock = new MockAdapter(axios);
|
||||
mock.onGet(`/-/emojis/${EMOJI_VERSION}/emojis.json`).reply(200, emojiData);
|
||||
|
||||
loadFixtures('snippets/show.html.raw');
|
||||
loadFixtures('snippets/show.html');
|
||||
loadAwardsHandler(true)
|
||||
.then(obj => {
|
||||
awardsHandler = obj;
|
||||
|
|
|
@ -4,10 +4,10 @@ import '~/behaviors/quick_submit';
|
|||
describe('Quick Submit behavior', function() {
|
||||
const keydownEvent = (options = { keyCode: 13, metaKey: true }) => $.Event('keydown', options);
|
||||
|
||||
preloadFixtures('snippets/show.html.raw');
|
||||
preloadFixtures('snippets/show.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('snippets/show.html.raw');
|
||||
loadFixtures('snippets/show.html');
|
||||
$('form').submit(e => {
|
||||
// Prevent a form submit from moving us off the testing page
|
||||
e.preventDefault();
|
||||
|
|
|
@ -3,10 +3,10 @@ import '~/behaviors/requires_input';
|
|||
|
||||
describe('requiresInput', () => {
|
||||
let submitButton;
|
||||
preloadFixtures('branches/new_branch.html.raw');
|
||||
preloadFixtures('branches/new_branch.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('branches/new_branch.html.raw');
|
||||
loadFixtures('branches/new_branch.html');
|
||||
submitButton = $('button[type="submit"]');
|
||||
});
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import ShortcutsIssuable from '~/behaviors/shortcuts/shortcuts_issuable';
|
|||
const FORM_SELECTOR = '.js-main-target-form .js-vue-comment-form';
|
||||
|
||||
describe('ShortcutsIssuable', function() {
|
||||
const fixtureName = 'snippets/show.html.raw';
|
||||
const fixtureName = 'snippets/show.html';
|
||||
preloadFixtures(fixtureName);
|
||||
|
||||
beforeAll(done => {
|
||||
|
|
|
@ -6,10 +6,10 @@ describe('Balsamiq integration spec', () => {
|
|||
let endpoint;
|
||||
let balsamiqViewer;
|
||||
|
||||
preloadFixtures('static/balsamiq_viewer.html.raw');
|
||||
preloadFixtures('static/balsamiq_viewer.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('static/balsamiq_viewer.html.raw');
|
||||
loadFixtures('static/balsamiq_viewer.html');
|
||||
|
||||
container = document.getElementById('js-balsamiq-viewer');
|
||||
balsamiqViewer = new BalsamiqViewer(container);
|
||||
|
|
|
@ -2,10 +2,10 @@ import $ from 'jquery';
|
|||
import BlobFileDropzone from '~/blob/blob_file_dropzone';
|
||||
|
||||
describe('BlobFileDropzone', function() {
|
||||
preloadFixtures('blob/show.html.raw');
|
||||
preloadFixtures('blob/show.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('blob/show.html.raw');
|
||||
loadFixtures('blob/show.html');
|
||||
const form = $('.js-upload-blob-form');
|
||||
this.blobFileDropzone = new BlobFileDropzone(form, 'POST');
|
||||
this.dropzone = $('.js-upload-blob-form .dropzone').get(0).dropzone;
|
||||
|
|
|
@ -3,10 +3,10 @@ import axios from '~/lib/utils/axios_utils';
|
|||
import renderNotebook from '~/blob/notebook';
|
||||
|
||||
describe('iPython notebook renderer', () => {
|
||||
preloadFixtures('static/notebook_viewer.html.raw');
|
||||
preloadFixtures('static/notebook_viewer.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('static/notebook_viewer.html.raw');
|
||||
loadFixtures('static/notebook_viewer.html');
|
||||
});
|
||||
|
||||
it('shows loading icon', () => {
|
||||
|
|
|
@ -15,10 +15,10 @@ describe('PDF renderer', () => {
|
|||
}
|
||||
};
|
||||
|
||||
preloadFixtures('static/pdf_viewer.html.raw');
|
||||
preloadFixtures('static/pdf_viewer.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('static/pdf_viewer.html.raw');
|
||||
loadFixtures('static/pdf_viewer.html');
|
||||
viewer = document.getElementById('js-pdf-viewer');
|
||||
viewer.dataset.endpoint = testPDF;
|
||||
});
|
||||
|
|
|
@ -13,10 +13,10 @@ describe('Sketch viewer', () => {
|
|||
});
|
||||
};
|
||||
|
||||
preloadFixtures('static/sketch_viewer.html.raw');
|
||||
preloadFixtures('static/sketch_viewer.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('static/sketch_viewer.html.raw');
|
||||
loadFixtures('static/sketch_viewer.html');
|
||||
});
|
||||
|
||||
describe('with error message', () => {
|
||||
|
|
|
@ -9,12 +9,12 @@ describe('Blob viewer', () => {
|
|||
let blob;
|
||||
let mock;
|
||||
|
||||
preloadFixtures('snippets/show.html.raw');
|
||||
preloadFixtures('snippets/show.html');
|
||||
|
||||
beforeEach(() => {
|
||||
mock = new MockAdapter(axios);
|
||||
|
||||
loadFixtures('snippets/show.html.raw');
|
||||
loadFixtures('snippets/show.html');
|
||||
$('#modal-upload-blob').remove();
|
||||
|
||||
blob = new BlobViewer();
|
||||
|
|
|
@ -9,7 +9,7 @@ describe('Board component', () => {
|
|||
let el;
|
||||
|
||||
beforeEach(done => {
|
||||
loadFixtures('boards/show.html.raw');
|
||||
loadFixtures('boards/show.html');
|
||||
|
||||
el = document.createElement('div');
|
||||
document.body.appendChild(el);
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
import LinkedTabs from '~/lib/utils/bootstrap_linked_tabs';
|
||||
|
||||
describe('Linked Tabs', () => {
|
||||
preloadFixtures('static/linked_tabs.html.raw');
|
||||
preloadFixtures('static/linked_tabs.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('static/linked_tabs.html.raw');
|
||||
loadFixtures('static/linked_tabs.html');
|
||||
});
|
||||
|
||||
describe('when is initialized', () => {
|
||||
|
|
|
@ -7,8 +7,8 @@ const VARIABLE_PATCH_ENDPOINT = 'http://test.host/frontend-fixtures/builds-proje
|
|||
const HIDE_CLASS = 'hide';
|
||||
|
||||
describe('AjaxFormVariableList', () => {
|
||||
preloadFixtures('projects/ci_cd_settings.html.raw');
|
||||
preloadFixtures('projects/ci_cd_settings_with_variables.html.raw');
|
||||
preloadFixtures('projects/ci_cd_settings.html');
|
||||
preloadFixtures('projects/ci_cd_settings_with_variables.html');
|
||||
|
||||
let container;
|
||||
let saveButton;
|
||||
|
@ -18,7 +18,7 @@ describe('AjaxFormVariableList', () => {
|
|||
let ajaxVariableList;
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('projects/ci_cd_settings.html.raw');
|
||||
loadFixtures('projects/ci_cd_settings.html');
|
||||
container = document.querySelector('.js-ci-variable-list-section');
|
||||
|
||||
mock = new MockAdapter(axios);
|
||||
|
@ -168,7 +168,7 @@ describe('AjaxFormVariableList', () => {
|
|||
|
||||
describe('updateRowsWithPersistedVariables', () => {
|
||||
beforeEach(() => {
|
||||
loadFixtures('projects/ci_cd_settings_with_variables.html.raw');
|
||||
loadFixtures('projects/ci_cd_settings_with_variables.html');
|
||||
container = document.querySelector('.js-ci-variable-list-section');
|
||||
|
||||
const ajaxVariableListEl = document.querySelector('.js-ci-variable-list-section');
|
||||
|
|
|
@ -5,9 +5,9 @@ import getSetTimeoutPromise from 'spec/helpers/set_timeout_promise_helper';
|
|||
const HIDE_CLASS = 'hide';
|
||||
|
||||
describe('VariableList', () => {
|
||||
preloadFixtures('pipeline_schedules/edit.html.raw');
|
||||
preloadFixtures('pipeline_schedules/edit_with_variables.html.raw');
|
||||
preloadFixtures('projects/ci_cd_settings.html.raw');
|
||||
preloadFixtures('pipeline_schedules/edit.html');
|
||||
preloadFixtures('pipeline_schedules/edit_with_variables.html');
|
||||
preloadFixtures('projects/ci_cd_settings.html');
|
||||
|
||||
let $wrapper;
|
||||
let variableList;
|
||||
|
@ -15,7 +15,7 @@ describe('VariableList', () => {
|
|||
describe('with only key/value inputs', () => {
|
||||
describe('with no variables', () => {
|
||||
beforeEach(() => {
|
||||
loadFixtures('pipeline_schedules/edit.html.raw');
|
||||
loadFixtures('pipeline_schedules/edit.html');
|
||||
$wrapper = $('.js-ci-variable-list-section');
|
||||
|
||||
variableList = new VariableList({
|
||||
|
@ -82,7 +82,7 @@ describe('VariableList', () => {
|
|||
|
||||
describe('with persisted variables', () => {
|
||||
beforeEach(() => {
|
||||
loadFixtures('pipeline_schedules/edit_with_variables.html.raw');
|
||||
loadFixtures('pipeline_schedules/edit_with_variables.html');
|
||||
$wrapper = $('.js-ci-variable-list-section');
|
||||
|
||||
variableList = new VariableList({
|
||||
|
@ -115,7 +115,7 @@ describe('VariableList', () => {
|
|||
|
||||
describe('with all inputs(key, value, protected)', () => {
|
||||
beforeEach(() => {
|
||||
loadFixtures('projects/ci_cd_settings.html.raw');
|
||||
loadFixtures('projects/ci_cd_settings.html');
|
||||
$wrapper = $('.js-ci-variable-list-section');
|
||||
|
||||
$wrapper.find('.js-ci-variable-input-protected').attr('data-default', 'false');
|
||||
|
@ -149,7 +149,7 @@ describe('VariableList', () => {
|
|||
|
||||
describe('toggleEnableRow method', () => {
|
||||
beforeEach(() => {
|
||||
loadFixtures('pipeline_schedules/edit_with_variables.html.raw');
|
||||
loadFixtures('pipeline_schedules/edit_with_variables.html');
|
||||
$wrapper = $('.js-ci-variable-list-section');
|
||||
|
||||
variableList = new VariableList({
|
||||
|
@ -198,7 +198,7 @@ describe('VariableList', () => {
|
|||
|
||||
describe('hideValues', () => {
|
||||
beforeEach(() => {
|
||||
loadFixtures('projects/ci_cd_settings.html.raw');
|
||||
loadFixtures('projects/ci_cd_settings.html');
|
||||
$wrapper = $('.js-ci-variable-list-section');
|
||||
|
||||
variableList = new VariableList({
|
||||
|
|
|
@ -2,12 +2,12 @@ import $ from 'jquery';
|
|||
import setupNativeFormVariableList from '~/ci_variable_list/native_form_variable_list';
|
||||
|
||||
describe('NativeFormVariableList', () => {
|
||||
preloadFixtures('pipeline_schedules/edit.html.raw');
|
||||
preloadFixtures('pipeline_schedules/edit.html');
|
||||
|
||||
let $wrapper;
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('pipeline_schedules/edit.html.raw');
|
||||
loadFixtures('pipeline_schedules/edit.html');
|
||||
$wrapper = $('.js-ci-variable-list-section');
|
||||
|
||||
setupNativeFormVariableList({
|
||||
|
|
|
@ -4,10 +4,10 @@ import getSetTimeoutPromise from 'spec/helpers/set_timeout_promise_helper';
|
|||
|
||||
describe('Clusters', () => {
|
||||
let cluster;
|
||||
preloadFixtures('clusters/show_cluster.html.raw');
|
||||
preloadFixtures('clusters/show_cluster.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('clusters/show_cluster.html.raw');
|
||||
loadFixtures('clusters/show_cluster.html');
|
||||
cluster = new Clusters();
|
||||
});
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ import Sidebar from '~/right_sidebar';
|
|||
import timeoutPromise from './helpers/set_timeout_promise_helper';
|
||||
|
||||
describe('Issuable right sidebar collapsed todo toggle', () => {
|
||||
const fixtureName = 'issues/open-issue.html.raw';
|
||||
const fixtureName = 'issues/open-issue.html';
|
||||
const jsonFixtureName = 'todos/todos.json';
|
||||
let mock;
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ const DROPDOWN_ITEM_DATA = [
|
|||
];
|
||||
|
||||
describe('CreateItemDropdown', () => {
|
||||
preloadFixtures('static/create_item_dropdown.html.raw');
|
||||
preloadFixtures('static/create_item_dropdown.html');
|
||||
|
||||
let $wrapperEl;
|
||||
let createItemDropdown;
|
||||
|
@ -44,7 +44,7 @@ describe('CreateItemDropdown', () => {
|
|||
}
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('static/create_item_dropdown.html.raw');
|
||||
loadFixtures('static/create_item_dropdown.html');
|
||||
$wrapperEl = $('.js-create-item-dropdown-fixture-root');
|
||||
});
|
||||
|
||||
|
|
|
@ -72,7 +72,7 @@ describe('Dropdown User', () => {
|
|||
});
|
||||
|
||||
describe('hideCurrentUser', () => {
|
||||
const fixtureTemplate = 'issues/issue_list.html.raw';
|
||||
const fixtureTemplate = 'issues/issue_list.html';
|
||||
preloadFixtures(fixtureTemplate);
|
||||
|
||||
let dropdown;
|
||||
|
|
|
@ -4,7 +4,7 @@ import IssuableFilteredSearchTokenKeys from '~/filtered_search/issuable_filtered
|
|||
import FilteredSearchSpecHelper from '../helpers/filtered_search_spec_helper';
|
||||
|
||||
describe('Dropdown Utils', () => {
|
||||
const issueListFixture = 'issues/issue_list.html.raw';
|
||||
const issueListFixture = 'issues/issue_list.html';
|
||||
preloadFixtures(issueListFixture);
|
||||
|
||||
describe('getEscapedText', () => {
|
||||
|
|
1
spec/javascripts/fixtures/.gitignore
vendored
1
spec/javascripts/fixtures/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
*.html.raw
|
||||
*.html
|
||||
*.json
|
||||
|
|
|
@ -18,7 +18,7 @@ describe Admin::AbuseReportsController, '(JavaScript fixtures)', type: :controll
|
|||
sign_in(admin)
|
||||
end
|
||||
|
||||
it 'abuse_reports/abuse_reports_list.html.raw' do |example|
|
||||
it 'abuse_reports/abuse_reports_list.html' do |example|
|
||||
get :index
|
||||
|
||||
expect(response).to be_success
|
||||
|
|
|
@ -17,7 +17,7 @@ describe Admin::UsersController, '(JavaScript fixtures)', type: :controller do
|
|||
clean_frontend_fixtures('admin/users')
|
||||
end
|
||||
|
||||
it 'admin/users/new_with_internal_user_regex.html.raw' do |example|
|
||||
it 'admin/users/new_with_internal_user_regex.html' do |example|
|
||||
stub_application_setting(user_default_external: true)
|
||||
stub_application_setting(user_default_internal_regex: '^(?:(?!\.ext@).)*$\r?')
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ describe Admin::ApplicationSettingsController, '(JavaScript fixtures)', type: :c
|
|||
remove_repository(project)
|
||||
end
|
||||
|
||||
it 'application_settings/accounts_and_limit.html.raw' do |example|
|
||||
it 'application_settings/accounts_and_limit.html' do |example|
|
||||
stub_application_setting(user_default_external: false)
|
||||
|
||||
get :show
|
||||
|
|
|
@ -22,7 +22,7 @@ describe Projects::BlobController, '(JavaScript fixtures)', type: :controller do
|
|||
remove_repository(project)
|
||||
end
|
||||
|
||||
it 'blob/show.html.raw' do |example|
|
||||
it 'blob/show.html' do |example|
|
||||
get(:show, params: {
|
||||
namespace_id: project.namespace,
|
||||
project_id: project,
|
||||
|
|
|
@ -17,7 +17,7 @@ describe Projects::BoardsController, '(JavaScript fixtures)', type: :controller
|
|||
sign_in(admin)
|
||||
end
|
||||
|
||||
it 'boards/show.html.raw' do |example|
|
||||
it 'boards/show.html' do |example|
|
||||
get(:index, params: {
|
||||
namespace_id: project.namespace,
|
||||
project_id: project
|
||||
|
|
|
@ -21,7 +21,7 @@ describe Projects::BranchesController, '(JavaScript fixtures)', type: :controlle
|
|||
remove_repository(project)
|
||||
end
|
||||
|
||||
it 'branches/new_branch.html.raw' do |example|
|
||||
it 'branches/new_branch.html' do |example|
|
||||
get :new, params: {
|
||||
namespace_id: project.namespace.to_param,
|
||||
project_id: project
|
||||
|
|
|
@ -22,7 +22,7 @@ describe Projects::ClustersController, '(JavaScript fixtures)', type: :controlle
|
|||
remove_repository(project)
|
||||
end
|
||||
|
||||
it 'clusters/show_cluster.html.raw' do |example|
|
||||
it 'clusters/show_cluster.html' do |example|
|
||||
get :show, params: {
|
||||
namespace_id: project.namespace.to_param,
|
||||
project_id: project,
|
||||
|
|
|
@ -19,7 +19,7 @@ describe Projects::CommitController, '(JavaScript fixtures)', type: :controller
|
|||
allow(SecureRandom).to receive(:hex).and_return('securerandomhex:thereisnospoon')
|
||||
end
|
||||
|
||||
it 'commit/show.html.raw' do |example|
|
||||
it 'commit/show.html' do |example|
|
||||
params = {
|
||||
namespace_id: project.namespace,
|
||||
project_id: project,
|
||||
|
|
|
@ -18,7 +18,7 @@ describe 'Groups (JavaScript fixtures)', type: :controller do
|
|||
end
|
||||
|
||||
describe GroupsController, '(JavaScript fixtures)', type: :controller do
|
||||
it 'groups/edit.html.raw' do |example|
|
||||
it 'groups/edit.html' do |example|
|
||||
get :edit, params: { id: group }
|
||||
|
||||
expect(response).to be_success
|
||||
|
@ -27,7 +27,7 @@ describe 'Groups (JavaScript fixtures)', type: :controller do
|
|||
end
|
||||
|
||||
describe Groups::Settings::CiCdController, '(JavaScript fixtures)', type: :controller do
|
||||
it 'groups/ci_cd_settings.html.raw' do |example|
|
||||
it 'groups/ci_cd_settings.html' do |example|
|
||||
get :show, params: { group_id: group }
|
||||
|
||||
expect(response).to be_success
|
||||
|
|
|
@ -21,26 +21,26 @@ describe Projects::IssuesController, '(JavaScript fixtures)', type: :controller
|
|||
remove_repository(project)
|
||||
end
|
||||
|
||||
it 'issues/open-issue.html.raw' do |example|
|
||||
it 'issues/open-issue.html' do |example|
|
||||
render_issue(example.description, create(:issue, project: project))
|
||||
end
|
||||
|
||||
it 'issues/closed-issue.html.raw' do |example|
|
||||
it 'issues/closed-issue.html' do |example|
|
||||
render_issue(example.description, create(:closed_issue, project: project))
|
||||
end
|
||||
|
||||
it 'issues/issue-with-task-list.html.raw' do |example|
|
||||
it 'issues/issue-with-task-list.html' do |example|
|
||||
issue = create(:issue, project: project, description: '- [ ] Task List Item')
|
||||
render_issue(example.description, issue)
|
||||
end
|
||||
|
||||
it 'issues/issue_with_comment.html.raw' do |example|
|
||||
it 'issues/issue_with_comment.html' do |example|
|
||||
issue = create(:issue, project: project)
|
||||
create(:note, project: project, noteable: issue, note: '- [ ] Task List Item').save
|
||||
render_issue(example.description, issue)
|
||||
end
|
||||
|
||||
it 'issues/issue_list.html.raw' do |example|
|
||||
it 'issues/issue_list.html' do |example|
|
||||
create(:issue, project: project)
|
||||
|
||||
get :index, params: {
|
||||
|
|
|
@ -32,7 +32,7 @@ describe Projects::JobsController, '(JavaScript fixtures)', type: :controller do
|
|||
remove_repository(project)
|
||||
end
|
||||
|
||||
it 'builds/build-with-artifacts.html.raw' do |example|
|
||||
it 'builds/build-with-artifacts.html' do |example|
|
||||
get :show, params: {
|
||||
namespace_id: project.namespace.to_param,
|
||||
project_id: project,
|
||||
|
|
|
@ -42,19 +42,19 @@ describe Projects::MergeRequestsController, '(JavaScript fixtures)', type: :cont
|
|||
remove_repository(project)
|
||||
end
|
||||
|
||||
it 'merge_requests/merge_request_of_current_user.html.raw' do |example|
|
||||
it 'merge_requests/merge_request_of_current_user.html' do |example|
|
||||
merge_request.update(author: admin)
|
||||
|
||||
render_merge_request(example.description, merge_request)
|
||||
end
|
||||
|
||||
it 'merge_requests/merge_request_with_task_list.html.raw' do |example|
|
||||
it 'merge_requests/merge_request_with_task_list.html' do |example|
|
||||
create(:ci_build, :pending, pipeline: pipeline)
|
||||
|
||||
render_merge_request(example.description, merge_request)
|
||||
end
|
||||
|
||||
it 'merge_requests/merged_merge_request.html.raw' do |example|
|
||||
it 'merge_requests/merged_merge_request.html' do |example|
|
||||
expect_next_instance_of(MergeRequest) do |merge_request|
|
||||
allow(merge_request).to receive(:source_branch_exists?).and_return(true)
|
||||
allow(merge_request).to receive(:can_remove_source_branch?).and_return(true)
|
||||
|
@ -62,13 +62,13 @@ describe Projects::MergeRequestsController, '(JavaScript fixtures)', type: :cont
|
|||
render_merge_request(example.description, merged_merge_request)
|
||||
end
|
||||
|
||||
it 'merge_requests/diff_comment.html.raw' do |example|
|
||||
it 'merge_requests/diff_comment.html' do |example|
|
||||
create(:diff_note_on_merge_request, project: project, author: admin, position: position, noteable: merge_request)
|
||||
create(:note_on_merge_request, author: admin, project: project, noteable: merge_request)
|
||||
render_merge_request(example.description, merge_request)
|
||||
end
|
||||
|
||||
it 'merge_requests/merge_request_with_comment.html.raw' do |example|
|
||||
it 'merge_requests/merge_request_with_comment.html' do |example|
|
||||
create(:note_on_merge_request, author: admin, project: project, noteable: merge_request, note: '- [ ] Task List Item')
|
||||
render_merge_request(example.description, merge_request)
|
||||
end
|
||||
|
|
|
@ -21,7 +21,7 @@ describe Projects::PipelineSchedulesController, '(JavaScript fixtures)', type: :
|
|||
sign_in(admin)
|
||||
end
|
||||
|
||||
it 'pipeline_schedules/edit.html.raw' do |example|
|
||||
it 'pipeline_schedules/edit.html' do |example|
|
||||
get :edit, params: {
|
||||
namespace_id: project.namespace.to_param,
|
||||
project_id: project,
|
||||
|
@ -32,7 +32,7 @@ describe Projects::PipelineSchedulesController, '(JavaScript fixtures)', type: :
|
|||
store_frontend_fixture(response, example.description)
|
||||
end
|
||||
|
||||
it 'pipeline_schedules/edit_with_variables.html.raw' do |example|
|
||||
it 'pipeline_schedules/edit_with_variables.html' do |example|
|
||||
get :edit, params: {
|
||||
namespace_id: project.namespace.to_param,
|
||||
project_id: project,
|
||||
|
|
|
@ -28,7 +28,7 @@ describe 'Projects (JavaScript fixtures)', type: :controller do
|
|||
end
|
||||
|
||||
describe ProjectsController, '(JavaScript fixtures)', type: :controller do
|
||||
it 'projects/dashboard.html.raw' do |example|
|
||||
it 'projects/dashboard.html' do |example|
|
||||
get :show, params: {
|
||||
namespace_id: project.namespace.to_param,
|
||||
id: project
|
||||
|
@ -38,7 +38,7 @@ describe 'Projects (JavaScript fixtures)', type: :controller do
|
|||
store_frontend_fixture(response, example.description)
|
||||
end
|
||||
|
||||
it 'projects/overview.html.raw' do |example|
|
||||
it 'projects/overview.html' do |example|
|
||||
get :show, params: {
|
||||
namespace_id: project_with_repo.namespace.to_param,
|
||||
id: project_with_repo
|
||||
|
@ -48,7 +48,7 @@ describe 'Projects (JavaScript fixtures)', type: :controller do
|
|||
store_frontend_fixture(response, example.description)
|
||||
end
|
||||
|
||||
it 'projects/edit.html.raw' do |example|
|
||||
it 'projects/edit.html' do |example|
|
||||
get :edit, params: {
|
||||
namespace_id: project.namespace.to_param,
|
||||
id: project
|
||||
|
@ -60,7 +60,7 @@ describe 'Projects (JavaScript fixtures)', type: :controller do
|
|||
end
|
||||
|
||||
describe Projects::Settings::CiCdController, '(JavaScript fixtures)', type: :controller do
|
||||
it 'projects/ci_cd_settings.html.raw' do |example|
|
||||
it 'projects/ci_cd_settings.html' do |example|
|
||||
get :show, params: {
|
||||
namespace_id: project.namespace.to_param,
|
||||
project_id: project
|
||||
|
@ -70,7 +70,7 @@ describe 'Projects (JavaScript fixtures)', type: :controller do
|
|||
store_frontend_fixture(response, example.description)
|
||||
end
|
||||
|
||||
it 'projects/ci_cd_settings_with_variables.html.raw' do |example|
|
||||
it 'projects/ci_cd_settings_with_variables.html' do |example|
|
||||
create(:ci_variable, project: project_variable_populated)
|
||||
create(:ci_variable, project: project_variable_populated)
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ describe Projects::ServicesController, '(JavaScript fixtures)', type: :controlle
|
|||
remove_repository(project)
|
||||
end
|
||||
|
||||
it 'services/prometheus/prometheus_service.html.raw' do |example|
|
||||
it 'services/prometheus/prometheus_service.html' do |example|
|
||||
get :edit, params: {
|
||||
namespace_id: namespace,
|
||||
project_id: project,
|
||||
|
|
|
@ -9,7 +9,7 @@ describe SearchController, '(JavaScript fixtures)', type: :controller do
|
|||
clean_frontend_fixtures('search/')
|
||||
end
|
||||
|
||||
it 'search/show.html.raw' do |example|
|
||||
it 'search/show.html' do |example|
|
||||
get :show
|
||||
|
||||
expect(response).to be_success
|
||||
|
|
|
@ -22,7 +22,7 @@ describe Projects::ServicesController, '(JavaScript fixtures)', type: :controlle
|
|||
remove_repository(project)
|
||||
end
|
||||
|
||||
it 'services/edit_service.html.raw' do |example|
|
||||
it 'services/edit_service.html' do |example|
|
||||
get :edit, params: {
|
||||
namespace_id: namespace,
|
||||
project_id: project,
|
||||
|
|
|
@ -16,7 +16,7 @@ describe 'Sessions (JavaScript fixtures)' do
|
|||
set_devise_mapping(context: @request)
|
||||
end
|
||||
|
||||
it 'sessions/new.html.raw' do |example|
|
||||
it 'sessions/new.html' do |example|
|
||||
get :new
|
||||
|
||||
expect(response).to be_success
|
||||
|
|
|
@ -23,7 +23,7 @@ describe SnippetsController, '(JavaScript fixtures)', type: :controller do
|
|||
remove_repository(project)
|
||||
end
|
||||
|
||||
it 'snippets/show.html.raw' do |example|
|
||||
it 'snippets/show.html' do |example|
|
||||
create(:discussion_note_on_snippet, noteable: snippet, project: project, author: admin, note: '- [ ] Task List Item')
|
||||
|
||||
get(:show, params: { id: snippet.to_param })
|
||||
|
|
|
@ -26,7 +26,7 @@ describe 'Todos (JavaScript fixtures)' do
|
|||
sign_in(admin)
|
||||
end
|
||||
|
||||
it 'todos/todos.html.raw' do |example|
|
||||
it 'todos/todos.html' do |example|
|
||||
get :index
|
||||
|
||||
expect(response).to be_success
|
||||
|
|
|
@ -18,7 +18,7 @@ context 'U2F' do
|
|||
set_devise_mapping(context: @request)
|
||||
end
|
||||
|
||||
it 'u2f/authenticate.html.raw' do |example|
|
||||
it 'u2f/authenticate.html' do |example|
|
||||
allow(controller).to receive(:find_user).and_return(user)
|
||||
|
||||
post :create, params: { user: { login: user.username, password: user.password } }
|
||||
|
@ -36,7 +36,7 @@ context 'U2F' do
|
|||
allow_any_instance_of(Profiles::TwoFactorAuthsController).to receive(:build_qr_code).and_return('qrcode:blackandwhitesquares')
|
||||
end
|
||||
|
||||
it 'u2f/register.html.raw' do |example|
|
||||
it 'u2f/register.html' do |example|
|
||||
get :show
|
||||
|
||||
expect(response).to be_success
|
||||
|
|
|
@ -5,7 +5,7 @@ import GLDropdown from '~/gl_dropdown';
|
|||
import '~/lib/utils/common_utils';
|
||||
|
||||
describe('glDropdown', function describeDropdown() {
|
||||
preloadFixtures('static/gl_dropdown.html.raw');
|
||||
preloadFixtures('static/gl_dropdown.html');
|
||||
loadJSONFixtures('projects.json');
|
||||
|
||||
const NON_SELECTABLE_CLASSES =
|
||||
|
@ -64,7 +64,7 @@ describe('glDropdown', function describeDropdown() {
|
|||
}
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('static/gl_dropdown.html.raw');
|
||||
loadFixtures('static/gl_dropdown.html');
|
||||
this.dropdownContainerElement = $('.dropdown.inline');
|
||||
this.$dropdownMenuElement = $('.dropdown-menu', this.dropdownContainerElement);
|
||||
this.projectsData = getJSONFixture('projects.json');
|
||||
|
|
|
@ -4,10 +4,10 @@ import $ from 'jquery';
|
|||
import GlFieldErrors from '~/gl_field_errors';
|
||||
|
||||
describe('GL Style Field Errors', function() {
|
||||
preloadFixtures('static/gl_field_errors.html.raw');
|
||||
preloadFixtures('static/gl_field_errors.html');
|
||||
|
||||
beforeEach(function() {
|
||||
loadFixtures('static/gl_field_errors.html.raw');
|
||||
loadFixtures('static/gl_field_errors.html');
|
||||
const $form = $('form.gl-show-field-errors');
|
||||
|
||||
this.$form = $form;
|
||||
|
|
|
@ -3,7 +3,7 @@ import initTodoToggle from '~/header';
|
|||
|
||||
describe('Header', function() {
|
||||
const todosPendingCount = '.todos-count';
|
||||
const fixtureTemplate = 'issues/open-issue.html.raw';
|
||||
const fixtureTemplate = 'issues/open-issue.html';
|
||||
|
||||
function isTodosCountHidden() {
|
||||
return $(todosPendingCount).hasClass('hidden');
|
||||
|
|
|
@ -4,7 +4,7 @@ import axios from '~/lib/utils/axios_utils';
|
|||
import IntegrationSettingsForm from '~/integrations/integration_settings_form';
|
||||
|
||||
describe('IntegrationSettingsForm', () => {
|
||||
const FIXTURE = 'services/edit_service.html.raw';
|
||||
const FIXTURE = 'services/edit_service.html';
|
||||
preloadFixtures(FIXTURE);
|
||||
|
||||
beforeEach(() => {
|
||||
|
|
|
@ -9,9 +9,9 @@ import '~/lib/utils/text_utility';
|
|||
describe('Issue', function() {
|
||||
let $boxClosed, $boxOpen, $btn;
|
||||
|
||||
preloadFixtures('issues/closed-issue.html.raw');
|
||||
preloadFixtures('issues/issue-with-task-list.html.raw');
|
||||
preloadFixtures('issues/open-issue.html.raw');
|
||||
preloadFixtures('issues/closed-issue.html');
|
||||
preloadFixtures('issues/issue-with-task-list.html');
|
||||
preloadFixtures('issues/open-issue.html');
|
||||
|
||||
function expectErrorMessage() {
|
||||
const $flashMessage = $('div.flash-alert');
|
||||
|
@ -105,9 +105,9 @@ describe('Issue', function() {
|
|||
|
||||
beforeEach(function() {
|
||||
if (isIssueInitiallyOpen) {
|
||||
loadFixtures('issues/open-issue.html.raw');
|
||||
loadFixtures('issues/open-issue.html');
|
||||
} else {
|
||||
loadFixtures('issues/closed-issue.html.raw');
|
||||
loadFixtures('issues/closed-issue.html');
|
||||
}
|
||||
|
||||
mock = new MockAdapter(axios);
|
||||
|
|
|
@ -16,10 +16,10 @@ let saveLabelCount = 0;
|
|||
let mock;
|
||||
|
||||
describe('Issue dropdown sidebar', () => {
|
||||
preloadFixtures('static/issue_sidebar_label.html.raw');
|
||||
preloadFixtures('static/issue_sidebar_label.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('static/issue_sidebar_label.html.raw');
|
||||
loadFixtures('static/issue_sidebar_label.html');
|
||||
|
||||
mock = new MockAdapter(axios);
|
||||
|
||||
|
|
|
@ -11,11 +11,11 @@ const execImmediately = callback => {
|
|||
describe('LazyLoader', function() {
|
||||
let lazyLoader = null;
|
||||
|
||||
preloadFixtures('issues/issue_with_comment.html.raw');
|
||||
preloadFixtures('issues/issue_with_comment.html');
|
||||
|
||||
describe('without IntersectionObserver', () => {
|
||||
beforeEach(function() {
|
||||
loadFixtures('issues/issue_with_comment.html.raw');
|
||||
loadFixtures('issues/issue_with_comment.html');
|
||||
|
||||
lazyLoader = new LazyLoader({
|
||||
observerNode: 'foobar',
|
||||
|
@ -131,7 +131,7 @@ describe('LazyLoader', function() {
|
|||
|
||||
describe('with IntersectionObserver', () => {
|
||||
beforeEach(function() {
|
||||
loadFixtures('issues/issue_with_comment.html.raw');
|
||||
loadFixtures('issues/issue_with_comment.html');
|
||||
|
||||
lazyLoader = new LazyLoader({
|
||||
observerNode: 'foobar',
|
||||
|
|
|
@ -5,7 +5,7 @@ import LineHighlighter from '~/line_highlighter';
|
|||
|
||||
describe('LineHighlighter', function() {
|
||||
var clickLine;
|
||||
preloadFixtures('static/line_highlighter.html.raw');
|
||||
preloadFixtures('static/line_highlighter.html');
|
||||
clickLine = function(number, eventData = {}) {
|
||||
if ($.isEmptyObject(eventData)) {
|
||||
return $('#L' + number).click();
|
||||
|
@ -15,7 +15,7 @@ describe('LineHighlighter', function() {
|
|||
}
|
||||
};
|
||||
beforeEach(function() {
|
||||
loadFixtures('static/line_highlighter.html.raw');
|
||||
loadFixtures('static/line_highlighter.html');
|
||||
this['class'] = new LineHighlighter();
|
||||
this.css = this['class'].highlightLineClass;
|
||||
return (this.spies = {
|
||||
|
|
|
@ -11,9 +11,9 @@ describe('MergeRequest', function() {
|
|||
describe('task lists', function() {
|
||||
let mock;
|
||||
|
||||
preloadFixtures('merge_requests/merge_request_with_task_list.html.raw');
|
||||
preloadFixtures('merge_requests/merge_request_with_task_list.html');
|
||||
beforeEach(function() {
|
||||
loadFixtures('merge_requests/merge_request_with_task_list.html.raw');
|
||||
loadFixtures('merge_requests/merge_request_with_task_list.html');
|
||||
|
||||
spyOn(axios, 'patch').and.callThrough();
|
||||
mock = new MockAdapter(axios);
|
||||
|
@ -125,7 +125,7 @@ describe('MergeRequest', function() {
|
|||
describe('hideCloseButton', () => {
|
||||
describe('merge request of another user', () => {
|
||||
beforeEach(() => {
|
||||
loadFixtures('merge_requests/merge_request_with_task_list.html.raw');
|
||||
loadFixtures('merge_requests/merge_request_with_task_list.html');
|
||||
this.el = document.querySelector('.js-issuable-actions');
|
||||
new MergeRequest(); // eslint-disable-line no-new
|
||||
MergeRequest.hideCloseButton();
|
||||
|
@ -145,7 +145,7 @@ describe('MergeRequest', function() {
|
|||
|
||||
describe('merge request of current_user', () => {
|
||||
beforeEach(() => {
|
||||
loadFixtures('merge_requests/merge_request_of_current_user.html.raw');
|
||||
loadFixtures('merge_requests/merge_request_of_current_user.html');
|
||||
this.el = document.querySelector('.js-issuable-actions');
|
||||
MergeRequest.hideCloseButton();
|
||||
});
|
||||
|
|
|
@ -22,8 +22,8 @@ describe('MergeRequestTabs', function() {
|
|||
};
|
||||
|
||||
preloadFixtures(
|
||||
'merge_requests/merge_request_with_task_list.html.raw',
|
||||
'merge_requests/diff_comment.html.raw',
|
||||
'merge_requests/merge_request_with_task_list.html',
|
||||
'merge_requests/diff_comment.html',
|
||||
);
|
||||
|
||||
beforeEach(function() {
|
||||
|
@ -48,7 +48,7 @@ describe('MergeRequestTabs', function() {
|
|||
var windowTarget = '_blank';
|
||||
|
||||
beforeEach(function() {
|
||||
loadFixtures('merge_requests/merge_request_with_task_list.html.raw');
|
||||
loadFixtures('merge_requests/merge_request_with_task_list.html');
|
||||
|
||||
tabUrl = $('.commits-tab a').attr('href');
|
||||
});
|
||||
|
|
|
@ -5,10 +5,10 @@ import MiniPipelineGraph from '~/mini_pipeline_graph_dropdown';
|
|||
import timeoutPromise from './helpers/set_timeout_promise_helper';
|
||||
|
||||
describe('Mini Pipeline Graph Dropdown', () => {
|
||||
preloadFixtures('static/mini_dropdown_graph.html.raw');
|
||||
preloadFixtures('static/mini_dropdown_graph.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('static/mini_dropdown_graph.html.raw');
|
||||
loadFixtures('static/mini_dropdown_graph.html');
|
||||
});
|
||||
|
||||
describe('When is initialized', () => {
|
||||
|
|
|
@ -3,7 +3,7 @@ import NewBranchForm from '~/new_branch_form';
|
|||
|
||||
describe('Branch', function() {
|
||||
describe('create a new branch', function() {
|
||||
preloadFixtures('branches/new_branch.html.raw');
|
||||
preloadFixtures('branches/new_branch.html');
|
||||
|
||||
function fillNameWith(value) {
|
||||
$('.js-branch-name')
|
||||
|
@ -16,7 +16,7 @@ describe('Branch', function() {
|
|||
}
|
||||
|
||||
beforeEach(function() {
|
||||
loadFixtures('branches/new_branch.html.raw');
|
||||
loadFixtures('branches/new_branch.html');
|
||||
$('form').on('submit', function(e) {
|
||||
return e.preventDefault();
|
||||
});
|
||||
|
|
|
@ -34,7 +34,7 @@ const htmlEscape = comment => {
|
|||
describe('Notes', function() {
|
||||
const FLASH_TYPE_ALERT = 'alert';
|
||||
const NOTES_POST_PATH = /(.*)\/notes\?html=true$/;
|
||||
var fixture = 'snippets/show.html.raw';
|
||||
var fixture = 'snippets/show.html';
|
||||
preloadFixtures(fixture);
|
||||
|
||||
beforeEach(function() {
|
||||
|
|
|
@ -2,10 +2,10 @@ import $ from 'jquery';
|
|||
import OAuthRememberMe from '~/pages/sessions/new/oauth_remember_me';
|
||||
|
||||
describe('OAuthRememberMe', () => {
|
||||
preloadFixtures('static/oauth_remember_me.html.raw');
|
||||
preloadFixtures('static/oauth_remember_me.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('static/oauth_remember_me.html.raw');
|
||||
loadFixtures('static/oauth_remember_me.html');
|
||||
|
||||
new OAuthRememberMe({ container: $('#oauth-container') }).bindEvents();
|
||||
});
|
||||
|
|
|
@ -3,7 +3,7 @@ import '~/lib/utils/text_utility';
|
|||
import AbuseReports from '~/pages/admin/abuse_reports/abuse_reports';
|
||||
|
||||
describe('Abuse Reports', () => {
|
||||
const FIXTURE = 'abuse_reports/abuse_reports_list.html.raw';
|
||||
const FIXTURE = 'abuse_reports/abuse_reports_list.html';
|
||||
const MAX_MESSAGE_LENGTH = 500;
|
||||
|
||||
let $messages;
|
||||
|
|
|
@ -5,7 +5,7 @@ import initUserInternalRegexPlaceholder, {
|
|||
} from '~/pages/admin/application_settings/account_and_limits';
|
||||
|
||||
describe('AccountAndLimits', () => {
|
||||
const FIXTURE = 'application_settings/accounts_and_limit.html.raw';
|
||||
const FIXTURE = 'application_settings/accounts_and_limit.html';
|
||||
let $userDefaultExternal;
|
||||
let $userInternalRegex;
|
||||
preloadFixtures(FIXTURE);
|
||||
|
|
|
@ -2,7 +2,7 @@ import $ from 'jquery';
|
|||
import UserInternalRegexHandler from '~/pages/admin/users/new/index';
|
||||
|
||||
describe('UserInternalRegexHandler', () => {
|
||||
const FIXTURE = 'admin/users/new_with_internal_user_regex.html.raw';
|
||||
const FIXTURE = 'admin/users/new_with_internal_user_regex.html';
|
||||
let $userExternal;
|
||||
let $userEmail;
|
||||
let $warningMessage;
|
||||
|
|
|
@ -2,10 +2,10 @@ import $ from 'jquery';
|
|||
import preserveUrlFragment from '~/pages/sessions/new/preserve_url_fragment';
|
||||
|
||||
describe('preserve_url_fragment', () => {
|
||||
preloadFixtures('sessions/new.html.raw');
|
||||
preloadFixtures('sessions/new.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('sessions/new.html.raw');
|
||||
loadFixtures('sessions/new.html');
|
||||
});
|
||||
|
||||
it('adds the url fragment to all login and sign up form actions', () => {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
import Pipelines from '~/pipelines';
|
||||
|
||||
describe('Pipelines', () => {
|
||||
preloadFixtures('static/pipeline_graph.html.raw');
|
||||
preloadFixtures('static/pipeline_graph.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('static/pipeline_graph.html.raw');
|
||||
loadFixtures('static/pipeline_graph.html');
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import $ from 'jquery';
|
||||
import ProjectSelectComboButton from '~/project_select_combo_button';
|
||||
|
||||
const fixturePath = 'static/project_select_combo_button.html.raw';
|
||||
const fixturePath = 'static/project_select_combo_button.html';
|
||||
|
||||
describe('Project Select Combo Button', function() {
|
||||
preloadFixtures(fixturePath);
|
||||
|
|
|
@ -5,7 +5,7 @@ import PANEL_STATE from '~/prometheus_metrics/constants';
|
|||
import { metrics, missingVarMetrics } from './mock_data';
|
||||
|
||||
describe('PrometheusMetrics', () => {
|
||||
const FIXTURE = 'services/prometheus/prometheus_service.html.raw';
|
||||
const FIXTURE = 'services/prometheus/prometheus_service.html';
|
||||
preloadFixtures(FIXTURE);
|
||||
|
||||
beforeEach(() => {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import initReadMore from '~/read_more';
|
||||
|
||||
describe('Read more click-to-expand functionality', () => {
|
||||
const fixtureName = 'projects/overview.html.raw';
|
||||
const fixtureName = 'projects/overview.html';
|
||||
|
||||
preloadFixtures(fixtureName);
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ const assertSidebarState = function(state) {
|
|||
|
||||
describe('RightSidebar', function() {
|
||||
describe('fixture tests', () => {
|
||||
const fixtureName = 'issues/open-issue.html.raw';
|
||||
const fixtureName = 'issues/open-issue.html';
|
||||
preloadFixtures(fixtureName);
|
||||
loadJSONFixtures('todos/todos.json');
|
||||
let mock;
|
||||
|
|
|
@ -126,9 +126,9 @@ describe('Search autocomplete dropdown', () => {
|
|||
expect(list.find(mrsIHaveCreatedLink).text()).toBe("Merge requests I've created");
|
||||
};
|
||||
|
||||
preloadFixtures('static/search_autocomplete.html.raw');
|
||||
preloadFixtures('static/search_autocomplete.html');
|
||||
beforeEach(function() {
|
||||
loadFixtures('static/search_autocomplete.html.raw');
|
||||
loadFixtures('static/search_autocomplete.html');
|
||||
|
||||
window.gon = {};
|
||||
window.gon.current_user_id = userId;
|
||||
|
|
|
@ -3,7 +3,7 @@ import Api from '~/api';
|
|||
import Search from '~/pages/search/show/search';
|
||||
|
||||
describe('Search', () => {
|
||||
const fixturePath = 'search/show.html.raw';
|
||||
const fixturePath = 'search/show.html';
|
||||
const searchTerm = 'some search';
|
||||
const fillDropdownInput = dropdownSelector => {
|
||||
const dropdownElement = document.querySelector(dropdownSelector).parentNode;
|
||||
|
|
|
@ -2,10 +2,10 @@ import $ from 'jquery';
|
|||
import initSettingsPanels from '~/settings_panels';
|
||||
|
||||
describe('Settings Panels', () => {
|
||||
preloadFixtures('groups/edit.html.raw');
|
||||
preloadFixtures('groups/edit.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('groups/edit.html.raw');
|
||||
loadFixtures('groups/edit.html');
|
||||
});
|
||||
|
||||
describe('initSettingsPane', () => {
|
||||
|
|
|
@ -2,7 +2,7 @@ import $ from 'jquery';
|
|||
import Shortcuts from '~/behaviors/shortcuts/shortcuts';
|
||||
|
||||
describe('Shortcuts', () => {
|
||||
const fixtureName = 'snippets/show.html.raw';
|
||||
const fixtureName = 'snippets/show.html';
|
||||
const createEvent = (type, target) =>
|
||||
$.Event(type, {
|
||||
target,
|
||||
|
|
|
@ -11,12 +11,12 @@ describe('sidebar assignees', () => {
|
|||
let vm;
|
||||
let mediator;
|
||||
let sidebarAssigneesEl;
|
||||
preloadFixtures('issues/open-issue.html.raw');
|
||||
preloadFixtures('issues/open-issue.html');
|
||||
|
||||
beforeEach(() => {
|
||||
Vue.http.interceptors.push(Mock.sidebarMockInterceptor);
|
||||
|
||||
loadFixtures('issues/open-issue.html.raw');
|
||||
loadFixtures('issues/open-issue.html');
|
||||
|
||||
mediator = new SidebarMediator(Mock.mediator);
|
||||
spyOn(mediator, 'saveAssignees').and.callThrough();
|
||||
|
|
|
@ -2,7 +2,7 @@ import AccessorUtilities from '~/lib/utils/accessor';
|
|||
import SigninTabsMemoizer from '~/pages/sessions/new/signin_tabs_memoizer';
|
||||
|
||||
describe('SigninTabsMemoizer', () => {
|
||||
const fixtureTemplate = 'static/signin_tabs.html.raw';
|
||||
const fixtureTemplate = 'static/signin_tabs.html';
|
||||
const tabSelector = 'ul.new-session-tabs';
|
||||
const currentTabKey = 'current_signin_tab';
|
||||
let memo;
|
||||
|
|
|
@ -3,11 +3,11 @@ import Todos from '~/pages/dashboard/todos/index/todos';
|
|||
import '~/lib/utils/common_utils';
|
||||
|
||||
describe('Todos', () => {
|
||||
preloadFixtures('todos/todos.html.raw');
|
||||
preloadFixtures('todos/todos.html');
|
||||
let todoItem;
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('todos/todos.html.raw');
|
||||
loadFixtures('todos/todos.html');
|
||||
todoItem = document.querySelector('.todos-list .todo');
|
||||
|
||||
return new Todos();
|
||||
|
|
|
@ -4,10 +4,10 @@ import 'vendor/u2f';
|
|||
import MockU2FDevice from './mock_u2f_device';
|
||||
|
||||
describe('U2FAuthenticate', function() {
|
||||
preloadFixtures('u2f/authenticate.html.raw');
|
||||
preloadFixtures('u2f/authenticate.html');
|
||||
|
||||
beforeEach(() => {
|
||||
loadFixtures('u2f/authenticate.html.raw');
|
||||
loadFixtures('u2f/authenticate.html');
|
||||
this.u2fDevice = new MockU2FDevice();
|
||||
this.container = $('#js-authenticate-u2f');
|
||||
this.component = new U2FAuthenticate(
|
||||
|
|
|
@ -4,10 +4,10 @@ import 'vendor/u2f';
|
|||
import MockU2FDevice from './mock_u2f_device';
|
||||
|
||||
describe('U2FRegister', function() {
|
||||
preloadFixtures('u2f/register.html.raw');
|
||||
preloadFixtures('u2f/register.html');
|
||||
|
||||
beforeEach(done => {
|
||||
loadFixtures('u2f/register.html.raw');
|
||||
loadFixtures('u2f/register.html');
|
||||
this.u2fDevice = new MockU2FDevice();
|
||||
this.container = $('#js-register-u2f');
|
||||
this.component = new U2FRegister(this.container, $('#js-register-u2f-templates'), {}, 'token');
|
||||
|
|
|
@ -2,7 +2,7 @@ import initUserPopovers from '~/user_popovers';
|
|||
import UsersCache from '~/lib/utils/users_cache';
|
||||
|
||||
describe('User Popovers', () => {
|
||||
const fixtureTemplate = 'merge_requests/diff_comment.html.raw';
|
||||
const fixtureTemplate = 'merge_requests/diff_comment.html';
|
||||
preloadFixtures(fixtureTemplate);
|
||||
|
||||
const selector = '.js-user-link';
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue