From 6748c96db3a36f06770fd12f11afa41243acc8e6 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 27 Jun 2019 16:08:37 +0200 Subject: [PATCH 1/5] changed the e2e to unit tests --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ab3ed898..720b6fdf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,4 +17,4 @@ cache: install: - npm ci script: - - npm run e2e + - ng test From 7ccbaae0ed2b6fdc39444318a1e4d1e019d5c066 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 27 Jun 2019 16:32:01 +0200 Subject: [PATCH 2/5] changed the e2e to unit tests try2 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 720b6fdf..321322e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: node_js node_js: - 12 addons: + chrome: stable apt: packages: # Ubuntu 16+ does not install this dependency by default, so we need to install it ourselves From 8f751d9d10c7526f691ac4c25904af3ffed9242f Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 27 Jun 2019 16:43:01 +0200 Subject: [PATCH 3/5] add headless chrome to yaml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 321322e8..2ae0caba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,4 +18,4 @@ cache: install: - npm ci script: - - ng test + - ng test -watch false -browsers ChromeHeadless From 8b31669e13e7648164245bea4ed69fab26d2918e Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 27 Jun 2019 16:45:39 +0200 Subject: [PATCH 4/5] add headless chrome to yaml try2 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2ae0caba..f54ddf3a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,4 +18,4 @@ cache: install: - npm ci script: - - ng test -watch false -browsers ChromeHeadless + - ng test --watch false --browsers ChromeHeadless From 27ce26eb61fdc86b0a0ac3cdc273d3ce19cee579 Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 7 Jul 2019 18:46:12 +0200 Subject: [PATCH 5/5] dummy change --- src/app/courses/home/sort-course-by-seq.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/courses/home/sort-course-by-seq.ts b/src/app/courses/home/sort-course-by-seq.ts index 2def73a0..8db61568 100644 --- a/src/app/courses/home/sort-course-by-seq.ts +++ b/src/app/courses/home/sort-course-by-seq.ts @@ -1,5 +1,5 @@ import {Course} from '../model/course'; - +//dummy change export function sortCoursesBySeqNo(c1:Course, c2: Course) { return c1.seqNo - c2.seqNo;