Skip to content

Commit 88cc3b0

Browse files
Angular 10, add tests (#313)
* Angular 10, add tests * Update .travis.yml * Update .travis.yml * Update app.component.spec.ts
1 parent 0fb38d9 commit 88cc3b0

10 files changed

Lines changed: 1319 additions & 1464 deletions

File tree

.travis.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
language: node_js
3+
node_js:
4+
- "10"
5+
6+
dist: trusty
7+
sudo: false
8+
9+
addons:
10+
chrome: stable
11+
12+
cache:
13+
directories:
14+
- ./node_modules
15+
16+
env:
17+
global:
18+
# See https://git.io/vdao3 for details.
19+
- JOBS=1
20+
21+
branches:
22+
only:
23+
- master
24+
# npm version tags
25+
- /^v\d+\.\d+\.\d+/
26+
27+
install:
28+
- npm install
29+
30+
script:
31+
- npm run test -- --no-watch --no-progress --browsers=ChromeHeadless

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ It provides additional functionality, on top of Shepherd, as well.
1717

1818
## Compatibility
1919

20+
* Angular 8: 0.5.0
21+
* Angular 9: 0.6.0
22+
* Angular 10: 0.7.0
23+
2024
This has not been tested in anything but Angular 8+. It may or may not work in previous versions or subsequent versions
2125
of Angular. We would love to support multiple versions, if people with more Angular knowledge would be willing to help us out!
2226

angular.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@
6161
"node_modules/shepherd.js/dist/css/shepherd.css",
6262
"projects/shepherd-tester/src/styles.css"
6363
],
64-
"scripts": [],
65-
"es5BrowserSupport": true
64+
"scripts": []
6665
},
6766
"configurations": {
6867
"production": {

0 commit comments

Comments
 (0)