
This patch constitutes the work discussed in Brussels for the MVP webclient. Changes made, as follows: 1- Updated header to contain Overview, Projects, Stories, and a "New Story" button, including mobile treatment. 2- Updated navigation header to use selection styling for mobile and regular. 3- Application index contains new-story button. 4- Main application container now has a minheight. 5- Removed old controllers (code cleanup) before reimplementation. 6- Wired project views (require API support). 7- Wired story views (require API support). 8- Wired new story modal (require API support). 9- New task form (requires API support). 10- Wired up new functional tests and fixed a few issues in existing unit tests. 11- Switched LESS compiler from recess to less, since recess can no longer compile the most recent version of bootstrap. Change-Id: Iddd5b29dd899d92f05ad7a9a63814d8599e167d4
25 lines
910 B
JavaScript
25 lines
910 B
JavaScript
/*
|
|
* Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
* not use this file except in compliance with the License. You may obtain
|
|
* a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
describe('Storyboard Project Routes', function () {
|
|
'use strict';
|
|
|
|
it('should redirect /project to /project/list', function () {
|
|
browser.get('http://localhost:9000/#!/project');
|
|
expect(browser.getCurrentUrl()).toContain('#!/project/list');
|
|
});
|
|
});
|