How to use jasmine - 10 common examples

To help you get started, we’ve selected a few jasmine examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github sheepsteak / react-shallow-testutils / specs / support / jasmine.js View on Github external
// eslint-disable-next-line import/no-extraneous-dependencies
require("@babel/register");

process.env.JASMINE_CONFIG_PATH = "specs/support/jasmine.json";

const path = require("path");
// eslint-disable-next-line import/no-extraneous-dependencies
const Command = require("jasmine/lib/command.js");

const command = new Command(path.resolve());

// eslint-disable-next-line import/no-extraneous-dependencies
const Jasmine = require("jasmine/lib/jasmine.js");

const jasmine = new Jasmine({ projectBaseDir: path.resolve() });

command.run(jasmine, process.argv.slice(2));
github sheepsteak / react-shallow-testutils / specs / support / jasmine.js View on Github external
// eslint-disable-next-line import/no-extraneous-dependencies
require("@babel/register");

process.env.JASMINE_CONFIG_PATH = "specs/support/jasmine.json";

const path = require("path");
// eslint-disable-next-line import/no-extraneous-dependencies
const Command = require("jasmine/lib/command.js");

const command = new Command(path.resolve());

// eslint-disable-next-line import/no-extraneous-dependencies
const Jasmine = require("jasmine/lib/jasmine.js");

const jasmine = new Jasmine({ projectBaseDir: path.resolve() });

command.run(jasmine, process.argv.slice(2));
github appcelerator / alloy / test / lib / runtimeTester.js View on Github external
var _ = require('lodash'),
	__j = require('jasmine'),
	CR = require('ConsoleReporter'),
	describe = __j.describe,
	it = __j.it,
	expect = __j.expect,
	jasmine = __j.jasmine,
	beforeEach = __j.beforeEach;

// These are in alphabetical order. It's not an accident. Keep it that way.
var apiChecks = {
	'Ti.UI.Button': function(o) {
		expect(o).toHaveFunction('setTitle');
	},
	'Ti.UI.ImageView': function(o) {
		expect(o).toHaveFunction('pause');
	},
	'Ti.UI.iOS.CoverFlowView': function(o) {
		expect(o).toHaveFunction('getImages');
	},
	'Ti.UI.iPhone.NavigationGroup': function(o) {
		apiChecks['Ti.UI.Window'](o.window);
	},
	'Ti.UI.Label': function(o) {
github appcelerator / alloy / test / lib / runtimeTester.js View on Github external
var _ = require('lodash'),
	__j = require('jasmine'),
	CR = require('ConsoleReporter'),
	describe = __j.describe,
	it = __j.it,
	expect = __j.expect,
	jasmine = __j.jasmine,
	beforeEach = __j.beforeEach;

// These are in alphabetical order. It's not an accident. Keep it that way.
var apiChecks = {
	'Ti.UI.Button': function(o) {
		expect(o).toHaveFunction('setTitle');
	},
	'Ti.UI.ImageView': function(o) {
		expect(o).toHaveFunction('pause');
	},
	'Ti.UI.iOS.CoverFlowView': function(o) {
		expect(o).toHaveFunction('getImages');
	},
	'Ti.UI.iPhone.NavigationGroup': function(o) {
		apiChecks['Ti.UI.Window'](o.window);
	},
github Animatron / player / tests / run-for-terminal.html View on Github external
function run_tests(on_finish, specs_to_run) {
        if (!window.__anm_conf) window.__anm_conf = {};
        window.__anm_conf.forceWindowScope = true;

        queue(require)(
                [ _files['jasmine'],
                  // _files['jasmine.html'],
                  _files['jasmine.tap'],
                  _files['jasmine.phantom'],
                  _files['vnd.matrix'],
                  _files['anm.dom-engine'], // FIXME: switch to test-engine
                  _files['anm.init'],
                  _files['anm.player'],
                  _files['anm.collisions'],
                  //_files['anm.intact-import'], // FIXME: enable
                  _files['anm.import'],
                  _files['anm.audio'],
                  _files['anm.audio-export'],
                  _files['anm.scripting'],
                  _files['anm.shapes'],
                  _files['tst.matchers'],
                  _files['tst.mocks'],
                  _files['tst.utils'],
                  _files['tst.engine']
          ], function() {
github Animatron / player / tests / run-for-teamcity.html View on Github external
function run_tests(on_finish, phantom) {
        if (!window.__anm_conf) window.__anm_conf = {};
      window.__anm_conf.forceWindowScope = true;

        queue(require)(
                [ _files['jasmine'],
                  // _files['jasmine.html'],
                  _files['jasmine.teamcity'],
                  _files['jasmine.phantom'],
                  _files['vnd.matrix'],
                  _files['anm.dom-engine'], // FIXME: switch to test-engine
                  _files['anm.init'],
                  _files['anm.player'],
                  _files['anm.collisions'],
                  _files['anm.intact-import'],
                  _files['tst.matchers'],
                  _files['tst.mocks'],
                  _files['tst.utils'],
                  _files['tst.engine']
          ], function() {
            anm.switchEngineTo(TestEngine);
            loadJasmine(window, [ new jasmine.TeamcityReporter(),
                                  new jasmine.PhantomReporter({ onFinish: on_finish }) ],
                                [ '*' ]);
          }
github tensorflow / tfjs / tfjs-automl / src / test_node.ts View on Github external
* Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * =============================================================================
 */

// tslint:disable-next-line: no-imports-from-dist
import {setTestEnvs} from '@tensorflow/tfjs-core/dist/jasmine_util';

// tslint:disable-next-line:no-require-imports
const jasmine = require('jasmine');

// Increase test timeout since we are fetching the model files from GCS.
jasmine.DEFAULT_TIMEOUT_INTERVAL = 20000;

process.on('unhandledRejection', e => {
  throw e;
});

// Run node tests againts the cpu backend.
setTestEnvs([{name: 'node', backendName: 'cpu'}]);

const runner = new jasmine();
runner.loadConfig({spec_files: ['src/**/*_test.ts'], random: false});
runner.execute();