-
-
Couldn't load subscription status.
- Fork 4.2k
Closed
Closed
Copy link
Labels
Description
This is probably similar to #15506.
We have a CI task for running all our tests in both dev and prod mode.
We started this, when the app started failing in production, after an ember upgrade (everything was green in normal dev/tests mode).
So the same CI task is complaining of (0 , n.classCallCheck) is not a function).
Locally it can be reproduced by either running the tests on command line like,
ember test --environment production
TypeError: (0 , n.classCallCheck) is not a function
at new a (http://localhost:7357/assets/test-support-53bc5911338063adc4ccac6eb3b4dca0.js:150:61)
at Function.d (http://localhost:7357/assets/vendor-95589e23a28b7d0c0a9b34af4f24b7ff.js:3155:7)
at o (http://localhost:7357/assets/test-support-53bc5911338063adc4ccac6eb3b4dca0.js:147:106)
at http://localhost:7357/assets/test-support-53bc5911338063adc4ccac6eb3b4dca0.js:98:51
at e.run (http://localhost:7357/assets/vendor-95589e23a28b7d0c0a9b34af4f24b7ff.js:1121:32)
at Le (http://localhost:7357/assets/vendor-95589e23a28b7d0c0a9b34af4f24b7ff.js:1903:260)
at a (http://localhost:7357/assets/test-support-53bc5911338063adc4ccac6eb3b4dca0.js:155:56)
at a.helpers.(anonymous function).meta.wait.n (http://localhost:7357/assets/test-support-53bc5911338063adc4ccac6eb3b4dca0.js:98:20)
at Object.<anonymous> (http://localhost:7357/assets/tests-d912cb57e87899b732daee3ea65cab72.js:498:101)
at e (http://localhost:7357/assets/test-support-53bc5911338063adc4ccac6eb3b4dca0.js:277:288)
at g.run (http://localhost:7357/assets/test-support-
....
or
ember test --server true --environment production
and load chrome. One would see following,
JakeDetels, RustyToms and Luisetelo
