mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 20:11:19 -04:00
8 lines
217 B
CoffeeScript
8 lines
217 B
CoffeeScript
fs = require 'fs'
|
|
|
|
{exec} = require 'child_process'
|
|
|
|
task 'test', 'test snowflake.coffee', () ->
|
|
exec 'coffee snowflake_test.coffee -v', (err, stdout, stderr) ->
|
|
throw err if err
|
|
console.log stdout + stderr
|