Skip to content

Commit

Permalink
Merge pull request #12 from angular-adaptive/canary
Browse files Browse the repository at this point in the history
Update test configuration
  • Loading branch information
janantala committed Aug 10, 2013
2 parents 0da953b + 6e9878b commit e52daa0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# adaptive-speech [![Build Status](https://travis-ci.org/angular-adaptive/adaptive-speech.png?branch=master)](https://travis-ci.org/angular-adaptive/adaptive-speech)
# adaptive-speech v0.1.6 [![Build Status](https://travis-ci.org/angular-adaptive/adaptive-speech.png?branch=master)](https://travis-ci.org/angular-adaptive/adaptive-speech)

This module allows you to control web app using speech commands. It's based on Chrome's speech recognition API.

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-adaptive-speech",
"version": "0.1.5",
"version": "0.1.6",
"description": "This module allows you to control web app using speech commands.",
"author": "https://github.com/angular-adaptive/adaptive-speech/graphs/contributors",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-adaptive-speech",
"version": "0.1.5",
"version": "0.1.6",
"description": "This module allows you to control web app using speech commands.",
"author": "https://github.com/angular-adaptive/adaptive-speech/graphs/contributors",
"license": "MIT",
Expand Down
25 changes: 14 additions & 11 deletions test/test.conf.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
basePath = '..';
files = [
JASMINE,
JASMINE_ADAPTER,
'components/angular/angular.js',
'components/angular-mocks/angular-mocks.js',
'src/adaptive-speech.js',
'test/*.spec.js'
];
singleRun = true;
browsers = [ 'Chrome' ];
module.exports = function(config) {
config.set({
basePath: '..',
files: [
'components/angular/angular.js',
'components/angular-mocks/angular-mocks.js',
'src/adaptive-speech.js',
'test/*.spec.js'
],
frameworks: ['jasmine'],
singleRun: true,
browsers: [ 'Chrome' ]
});
};

0 comments on commit e52daa0

Please sign in to comment.