Skip to content

Commit 6325af8

Browse files
test: Test against angularjs 1.7 too
1 parent 25bbb19 commit 6325af8

File tree

5 files changed

+44465
-2
lines changed

5 files changed

+44465
-2
lines changed

Diff for: jest.config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
const NG = process.env.NG || '1.6';
1+
const NG = process.env.NG || '1.7';
2+
3+
console.log(`Testing with AngularJS ${NG}`);
24

35
module.exports = {
46
preset: 'ts-jest',

Diff for: package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
"bundle_router": "rollup -c --environment ROUTER && rollup -c --environment ROUTER,MINIFY",
1616
"bundle_events": "rollup -c --environment EVENTS && rollup -c --environment EVENTS,MINIFY",
1717
"bundle_resolve": "rollup -c --environment RESOLVE && rollup -c --environment RESOLVE,MINIFY",
18-
"test": "tsc && NG=1.6 jest && NG=1.5 jest && NG=1.4 jest && NG=1.3 jest && NG=1.2 jest",
18+
"test": "tsc && NG=1.7 jest && NG=1.6 jest && NG=1.5 jest && NG=1.4 jest && NG=1.3 jest && NG=1.2 jest",
1919
"test:debug": "node --inspect ./node_modules/.bin/jest --runInBand --watch",
2020
"test:ng12": "NG=1.2 jest",
2121
"test:ng13": "NG=1.3 jest",
2222
"test:ng14": "NG=1.4 jest",
2323
"test:ng15": "NG=1.5 jest",
2424
"test:ng16": "NG=1.6 jest",
25+
"test:ng17": "NG=1.7 jest",
2526
"test:downstream": "test_downstream_projects",
2627
"watch": "jest --watch",
2728
"debug": "npm run test:debug",

0 commit comments

Comments
 (0)