How to add Jasmine settings to a “standalone” Jasmine setup (one using SpecRunner.html)
How to add Jasmine settings to a “standalone” Jasmine setup (one using SpecRunner.html) There are lots of examples online on how to set up a standalone jasmine tests in a SpecRunner.html file, like so: <!doctype html> <html> <head> <title>Jasmine Spec Runner</title> <link rel="stylesheet" href="bower_components/jasmine/lib/jasmine-core/jasmine.css"> </head> <body> <script src="bower_components/jasmine/lib/jasmine-core/jasmine.js"></script> <script src="bower_components/jasmine/lib/jasmine-core/jasmine-html.js"></script> <!-- include source files here... --> <!-- include spec files here... --> With this kind of setup, how would I configure Jasmine settings, like those found in the node.js or gulp setup? I'm talking about things like random: false , setting a random seed, and other settings that aren't runner-specific. random: false ...