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-2536"
expires: Fri, 10 Oct 2025 04:18:10 GMT
cache-control: max-age=600
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: 1639:246384:C71D6:EAAAF:68E886A8
accept-ranges: bytes
age: 0
date: Fri, 10 Oct 2025 04:08:10 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210083-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760069291.533702,VS0,VE293
vary: Accept-Encoding
x-fastly-request-id: da69c9071670066fcb91ff149a6a41bd61142987
content-length: 2675
Karma - 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