refactor(test/e2e): make file/directory names consistent

This commit is contained in:
Georgios Kalpakas
2016-07-19 15:31:45 +03:00
parent 5f6949fdae
commit 5dfb328c94
9 changed files with 2 additions and 2 deletions
@@ -1,11 +1,11 @@
describe('Customizing the jqLite / jQuery version', function() {
it('should be able to force jqLite', function() {
loadFixture('ngJq');
loadFixture('ng-jq');
expect(element(by.binding('jqueryVersion')).getText()).toBe('jqLite');
});
it('should be able to use a specific version jQuery', function() {
loadFixture('ngJqJquery');
loadFixture('ng-jq-jquery');
expect(element(by.binding('jqueryVersion')).getText()).toBe('2.1.0');
});
});