Skip to content
Permalink
1587bf5b33
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (14 sloc) 385 Bytes
'use strict'
const Jasmine = require('jasmine')
const jasmine = new Jasmine()
jasmine.loadConfigFile('acceptance/jasmine.json')
const JasmineConsoleReporter = require('jasmine-console-reporter')
const reporter = new JasmineConsoleReporter({
colors: true,
cleanStack: true,
verbosity: 3,
listStyle: 'indent',
activity: true
})
jasmine.addReporter(reporter)
jasmine.execute()