Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Dec 15, 2018
1 parent 6dbc8cf commit 46179a7
Show file tree
Hide file tree
Showing 9 changed files with 3,850 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .gitignore
Expand Up @@ -29,14 +29,14 @@ bower_components
# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
# Typescript v1 declaration files
typings/

# Optional npm cache directory
Expand All @@ -57,5 +57,4 @@ typings/
# dotenv environment variables file
.env

# next.js build output
.next
*~
16 changes: 16 additions & 0 deletions .travis.yml
@@ -0,0 +1,16 @@
language: node_js
sudo: false

env:
- SENECA_VER=senecajs/seneca

node_js:
- '10'
- '8'

before_script:
- npm uninstall seneca
- npm install $SENECA_VER

after_script:
- npm run coveralls
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Seneca Microservices Framework
Copyright (c) 2018 voxgig

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
36 changes: 34 additions & 2 deletions README.md
@@ -1,2 +1,34 @@
# seneca-test-plugin
Test plugin
# @seneca/test-plugin
[Seneca](senecajs.org) plugin for debugging Seneca-based systems.

[![Npm][BadgeNpm]][Npm]
[![Travis][BadgeTravis]][Travis]
[![Coveralls][BadgeCoveralls]][Coveralls]


## Install

```
$ npm install @seneca/test-plugin
```

## Quick Example

```
```


## Inbound Messages



## Implementations



[BadgeCoveralls]: https://coveralls.io/repos/senecajs/seneca-test-plugin/badge.svg?branch=master&service=github
[BadgeNpm]: https://badge.fury.io/js/senecajs/seneca-test-plugin.svg
[BadgeTravis]: https://travis-ci.org/senecajs/seneca-test-plugin.svg?branch=master
[Coveralls]: https://coveralls.io/github/senecajs/seneca-test-plugin?branch=master
[Npm]: https://www.npmjs.com/package/@seneca/test-plugin
[Travis]: https://travis-ci.org/senecajs/seneca-test-plugin?branch=master

0 comments on commit 46179a7

Please sign in to comment.