NativeScript / karma-nativescript-launcher

Karma launcher for NativeScript unit tests
Other
6 stars 3 forks source link

Unit Test Runner should work on iOS 9 with ATS #14

Closed ligaz closed 9 years ago

ligaz commented 9 years ago

Currently the unit test runner tries to open the karma server via HTTP which fails on iOS 9. Consider upgrading the runner to a plugin with Info.plist file.

ligaz commented 9 years ago

Info.plist change to allow HTTP.

    <key>NSAppTransportSecurity</key>
    <dict>
      <!--Include to allow all connections (DANGER)-->
      <key>NSAllowsArbitraryLoads</key>
          <true/>
    </dict>
tailsu commented 9 years ago

On PR.