Commit b88af7f
committed
Upgrade karma to get rid of ES6 and ES7 polyfill
Previous Karma version pulled in a polyfill that made it possible to
use ES6 and ES7 features in tests. Such features might not be available
during runtime and could result in errors. `String#padStart()` is an
example of a feature that was used in the code and was added by the
Karma polyfill. Tests worked just fine but driver code failed at
runtime in older NodeJS versions.
Note that Babel runtime that is used by the driver does not polyfill
instance methods such as `String#padStart()`.1 parent 0722da0 commit b88af7f
1 file changed
+4
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
55 | | - | |
| 55 | + | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | | - | |
61 | | - | |
| 60 | + | |
| 61 | + | |
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
| |||
0 commit comments