Skip to content

Commit a61dd5c

Browse files
committed
Add npm run test
1 parent c09f58d commit a61dd5c

File tree

2 files changed

+70
-1
lines changed

2 files changed

+70
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ branches:
77
cache:
88
directories:
99
- node_modules/
10-
script: npm run lint
10+
script:
11+
- npm run lint
12+
- npm run test

yarn-error.log

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
Arguments:
2+
/usr/local/bin/node /usr/local/bin/yarn add node-gyp
3+
4+
PATH:
5+
/Users/timmerman/Downloads/google-cloud-sdk/bin:/Users/timmerman/.rvm/gems/ruby-2.3.4/bin:/Users/timmerman/.rvm/gems/ruby-2.3.4@global/bin:/Users/timmerman/.rvm/rubies/ruby-2.3.4/bin:/Users/timmerman/.rbenv/shims:$/Users/timmerman/.rvm/gems/ruby-2.3.3/bin:/Users/timmerman/.rbenv/bin:/Applications/Postgres.app/Contents/Versions/9.3/bin:/usr/local/smlnj/bin:/usr/local/heroku/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/local/go/bin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/timmerman/bin/go/bin:/Users/timmerman/.rvm/bin
6+
7+
Yarn version:
8+
0.27.5
9+
10+
Node version:
11+
9.4.0
12+
13+
Platform:
14+
darwin x64
15+
16+
npm manifest:
17+
{
18+
"name": "apps-script-oauth2",
19+
"version": "1.25.0",
20+
"description": "OAuth2 for Apps Script is a library for Google Apps Script that provides the ability to create and authorize OAuth2 tokens as well as refresh them when they expire.",
21+
"repository": {
22+
"type": "git",
23+
"url": "git://github.com/googlesamples/apps-script-oauth2.git"
24+
},
25+
"author": "Eric Koleda <ekoleda+devrel@googlers.com>",
26+
"license": "Apache-2.0",
27+
"bugs": {
28+
"url": "https://github.com/googlesamples/apps-script-oauth2/issues"
29+
},
30+
"homepage": "https://github.com/googlesamples/apps-script-oauth2",
31+
"devDependencies": {
32+
"@google/clasp": "^1.1.5",
33+
"chai": "^4.1.2",
34+
"del": "^1.2.1",
35+
"eslint": "^4.17.0",
36+
"eslint-config-google": "^0.9.1",
37+
"fibers": "^2.0.0",
38+
"gas-local": "^1.3.0",
39+
"gulp": "^3.9.1",
40+
"gulp-clean": "^0.3.2",
41+
"gulp-concat": "^2.6.1",
42+
"gulp-eslint": "^4.0.2",
43+
"gulp-expose": "0.0.7",
44+
"gulp-rename": "^1.2.2",
45+
"jsdoc": "^3.5.5",
46+
"mocha": "^4.1.0"
47+
},
48+
"scripts": {
49+
"preversion": "npm test && clasp push",
50+
"version": "npm run dist && git add -A dist",
51+
"postversion": "MESSAGE=$(git log -1 --pretty=%B) && clasp version $MESSAGE",
52+
"dist": "gulp dist",
53+
"lint": "gulp lint",
54+
"doc": "jsdoc -c jsdoc.json src/*.js README.md",
55+
"push": "clasp push",
56+
"test": "mocha"
57+
}
58+
}
59+
60+
yarn manifest:
61+
No manifest
62+
63+
Lockfile:
64+
No lockfile
65+
66+
Trace:
67+
Error: EACCES: permission denied, unlink '/Users/timmerman/Documents/github/google/apps-script-oauth2/node_modules/.bin/_mocha'

0 commit comments

Comments
 (0)