Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,9 @@ jspm_packages
.node_repl_history

# We run on TypeScript and PEG.js
*.js
*.js

*.tgz
package
package-lock.json
.DS_Store
7 changes: 6 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
*.pegjs
*.ts
*.tgz
!*.d.ts
tsconfig.json
.vscode
.vscode
tests
package
package-lock.json
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
language: node_js
os: osx
node_js:
- "node"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "API to find an iOS mobile provision",
"main": "index.js",
"scripts": {
"prepublish": "tsc && pegjs parsers/security-find-identity.pegjs && pegjs parsers/security-find-certificate.pegjs",
"prepare": "tsc && pegjs parsers/security-find-identity.pegjs && pegjs parsers/security-find-certificate.pegjs",
"test": "tsc && mocha",
"watch": "mocha-typescript-watch"
},
Expand Down
3 changes: 2 additions & 1 deletion test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function print(result: provision.Result) {
}

// These run end to end tests and run security tool and depend on the keychain, they will run only on mac. Consider running them during development.
describe.skip("api", () => {
describe("api", () => {
describe("certificates", () => {
it("list all", () => {
const result = cert.read();
Expand Down Expand Up @@ -219,4 +219,5 @@ describe("provision", function() {
// This test need to be added in future.
it("can find profile by app-id, device udid and certificate");
it("unique filters duplicates");
it("can parse a provisioning profile file");
});