Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.js 394B

12345678910111213141516
  1. var tape = require("tape");
  2. var fetch = require("..");
  3. tape.test("fetch", function(test) {
  4. if (typeof Promise !== "undefined") {
  5. var promise = fetch("NOTFOUND");
  6. promise.catch(function() {});
  7. test.ok(promise instanceof Promise, "should return a promise if callback has been omitted");
  8. }
  9. // TODO - some way to test this properly?
  10. test.end();
  11. });