Skip to content

Commit 1424d5f

Browse files
committed
Merge branch 'master' into gulp
2 parents 2482557 + 016fea7 commit 1424d5f

File tree

325 files changed

+563
-86172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

325 files changed

+563
-86172
lines changed

.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "app/bower_components"
3+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ logs/*
22
!.gitkeep
33
dist/
44
node_modules/
5+
bower_components/
56
tmp
67
.tmp/
78
.DS_Store

.jshintrc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"strict": "global",
3+
"globals": {
4+
// Angular
5+
"angular": false,
6+
7+
// Angular mocks
8+
"module": false,
9+
"inject": false,
10+
11+
// Jasmine
12+
"jasmine": false,
13+
"describe": false,
14+
"beforeEach": false,
15+
"afterEach": false,
16+
"it": false,
17+
"expect": false,
18+
19+
// Protractor
20+
"browser": false,
21+
"element": false,
22+
"by": false
23+
}
24+
}

.travis.yml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
1+
sudo: required
2+
dist: trusty
3+
14
language: node_js
25
node_js:
3-
- 0.8
6+
- '4.5'
47

5-
before_script:
8+
install:
69
- export DISPLAY=:99.0
710
- sh -e /etc/init.d/xvfb start
8-
- npm install --quiet -g karma
9-
- npm install --quiet -g protractor
10-
- ./scripts/web-server.js > /dev/null &
11-
- sleep 1 # give server time to start
11+
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
12+
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
13+
- sudo apt-get update -q
14+
- sudo apt-get install -q google-chrome-stable
15+
16+
before_script:
17+
- npm install
1218

1319
script:
14-
- karma start config/karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox
15-
- webdriver-manager update
16-
- protractor config/protractor-conf.js --browser=firefox
20+
- npm run test-single-run
21+
- (npm start > /dev/null &) && (npm run protractor)

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2010-2012 Google, Inc. http://angularjs.org
3+
Copyright (c) 2010-2016 Google, Inc. http://angularjs.org
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)