# karma-iebrowsers-launcher

> A Karma Launcher for IEBrowsers virtual machines

Latest version **0.0.1** (published 2014-03-27) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install karma-iebrowsers-launcher
pnpm add karma-iebrowsers-launcher
yarn add karma-iebrowsers-launcher
bun add karma-iebrowsers-launcher
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2014-03-27 |
| First published | 2014-03-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | Harvey Ball |
| Maintainers | livestax |
| Keywords | karma-plugin, karma-launcher, ie, ie-browsers |

## Links

- npm: https://www.npmjs.com/package/karma-iebrowsers-launcher
- Repository: https://github.com/livestax/karma-iebrowsers-launcher
- Homepage: http://github.com/livestax/karma-iebrowsers-launcher
- Issues: https://github.com/livestax/karma-iebrowsers-launcher/issues
- npm.io page: https://npm.io/package/karma-iebrowsers-launcher

## Dependencies (1)

- [request](https://npm.io/package/request.md) >=2.33.0

## Alternatives

- [launchdarkly-js-client-sdk](https://npm.io/package/launchdarkly-js-client-sdk.md) — 2.5M weekly downloads
- [@elastic/elasticsearch](https://npm.io/package/@elastic/elasticsearch.md) — 2.1M weekly downloads
- [@c8y/client](https://npm.io/package/@c8y/client.md) — 15.3K weekly downloads
- [@signaldb/maverickjs](https://npm.io/package/@signaldb/maverickjs.md) — 1.7K weekly downloads
- [@bbc/http-transport-cache](https://npm.io/package/@bbc/http-transport-cache.md) — 1.2K weekly downloads

## Recent versions

- 0.0.1 (latest) — 2014-03-27

## README

Karma IEBrowsers Launcher
=========================

[Karma](http://karma-runner.github.io) browser launcher for the [IEBrowsers](https://github.com/livestax/ie-browsers) virtual machines.

This Karma plugin adds browser launchers for IEBrowsers virtual machines. This allows for testing across multiple versions of Internet Explorer simultaneously.

_Karma can be installed on a separate machine from the IEBrowsers VM as it communicates over http and web sockets._


Prerequisites
-------------

You must have installed the versions of IE on the IEBrowsers VM prior to setting them up in the Karma config.


Installation
------------

Intall the plugin from npm:
```sh
$npm install karma-iebrowsers-launcher --save-dev
```

Or from Github
```sh
$npm install 'git+https://github.com/livestax/karma-iebrowsers-launcher.git' --save-dev
```

Install the IE Browser virtual machines you wish to test against. See the [IEBrowsers Repo](https://github.com/livestax/ie-browsers) for further instructions

**Quick example of how to install IE10 via IEBrowsers:**

Visit `http://<your-vm-host-ip>/iebrowsers/iecontrol.php?action=install&version=10` in your web browser

_or_
```sh
curl "http://<your-vm-host-ip>/iebrowsers/iecontrol.php?action=install&version=10"
```

####Configue Karma

Ensure your karma.conf.js is configured to allow your karma runner to be accessed from the IEBrowsers VM (if it's on a different machine then it will need a network route between the two machines)

```javascript
module.exports = function(config) {
  config.set({

  // Ensure your hostname is set to the publicly accessible IP and not localhost
  hostname: '192.168.1.10',
  port: 9876,
  
  // Add the IEBrowsers host path to the VM controller
  iebrowsers: {
    host: 'http://192.168.1.11/ie-browsers/iecontrol.php',
  },
  
  // Set the IE Browsers you wish to test against
  browsers: ['IE8', 'IE9', 'IE10'], 
  ]

  //....

  });
};
```

Usage
-----

Run your karma tests
```sh
$ karma start
```

---
_Source: https://npm.io/package/karma-iebrowsers-launcher · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
