CARVIEW |
Select Language
HTTP/2 200
server: GitHub.com
content-type: text/html; charset=utf-8
last-modified: Mon, 29 Jul 2024 17:43:22 GMT
access-control-allow-origin: *
etag: W/"66a7d4ba-255a"
expires: Sat, 11 Oct 2025 19:50:00 GMT
cache-control: max-age=600
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: 4F9D:C7931:C477B:EDE04:68EAB287
accept-ranges: bytes
age: 0
date: Sat, 11 Oct 2025 19:40:00 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210022-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760211601.622381,VS0,VE293
vary: Accept-Encoding
x-fastly-request-id: c09567840b915c61faab697b76efbdfedbde2499
content-length: 2713
Karma - Cloud9
Heads Up! You're viewing the docs for v5.0, an old version of Karma.
v6.4 is the newest.
Cloud9
Cloud9 IDE is an open source web-based cloud integrated development environment that supports several programming languages, with a focus on the web stack (specifically JavaScript and NodeJS). It is written almost entirely in JavaScript and uses NodeJS on the back-end.
Configuration #
First, make sure the karma.conf.js
includes the following entries:
hostname: process.env.IP,
port: process.env.PORT
Capture the browser manually on the local machine #
You can use any of your local browsers.
# Start Karma without browsers:
$ karma start --no-browsers
Now, open https://<projectName>.<cloud9User>.c9.io/
in your browser.
Run Karma unit tests with PhantomJS #
It is also possible to run headless PhantomJS on the Cloud9 server.
# Install the PhantomJS plugin:
$ npm install karma-phantomjs-launcher
# Start Karma:
$ karma start --browsers PhantomJS