Skip to content
This repository has been archived by the owner on May 10, 2022. It is now read-only.

Commit

Permalink
Default Mocha timeout was too low.
Browse files Browse the repository at this point in the history
Travis was timing out even though it worked on my laptop. Increasing the
timeout should help.
http://stackoverflow.com/a/23492442/101923
  • Loading branch information
tswast committed Oct 10, 2016
1 parent c62459a commit f95828a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/encrypt-secrets.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/bash

#!/usr/bin/env bash
# Copyright 2016 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 2 additions & 0 deletions vision/explore-api/main.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
'use strict';

describe('vision/explore-api/main.js', function () {
this.timeout(30000);

before(function (done) {
var fileform = document.createElement('form');
fileform.id = 'fileform';
Expand Down

0 comments on commit f95828a

Please sign in to comment.