Skip to content

Instantly share code, notes, and snippets.

@almet
Created August 26, 2015 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save almet/d370b1c66a352370f22d to your computer and use it in GitHub Desktop.
Save almet/d370b1c66a352370f22d to your computer and use it in GitHub Desktop.
diff --git a/test/integration_test.js b/test/integration_test.js
index f6abc36..7d0aa43 100644
--- a/test/integration_test.js
+++ b/test/integration_test.js
@@ -18,11 +18,12 @@ const TEST_KINTO_SERVER = "http://0.0.0.0:8888/v1";
const PSERVE_EXECUTABLE = process.env.KINTO_PSERVE_EXECUTABLE || "pserve";
const KINTO_CONFIG = __dirname + "/kinto.ini";
-describe("Integration tests", () => {
+describe.only("Integration tests", () => {
var sandbox, server, tasks;
const MAX_ATTEMPTS = 50;
function startServer(env={}) {
+ console.log(PSERVE_EXECUTABLE, KINTO_CONFIG, env);
server = spawn(PSERVE_EXECUTABLE, [KINTO_CONFIG], {env});
server.stderr.on("data", function(data) {
// Uncomment the line below to have server logs printed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment