katrotz/splitify

View on GitHub
packages/meteor-jasmine/test-app/server/meteorMethod.js

Summary

Maintainability
A
0 mins
Test Coverage
Meteor.methods({
  test: function (argument) {
    check(argument, Match.Any)
    console.log('Called Meteor method with ', argument)
    return true
  }
})