27 lines
804 B
JavaScript
27 lines
804 B
JavaScript
/*******************************************************************************
|
|
* Copyright (c) 2015 Codenvy, S.A.
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
* which accompanies this distribution, and is available at
|
|
* http://www.eclipse.org/legal/epl-v10.html
|
|
*
|
|
* Contributors:
|
|
* Codenvy, S.A. - initial API and implementation
|
|
*******************************************************************************/
|
|
|
|
'use strict';
|
|
|
|
|
|
describe('Create project using git TAB', function () {
|
|
var createProjectsPage;
|
|
|
|
var createProjectMock;
|
|
|
|
beforeEach(function () {
|
|
createProjectsPage = require('./create-project.po.js');
|
|
createProjectMock = require('./create-project-http.mock');
|
|
});
|
|
|
|
|
|
});
|