Skip to content

Commit

Permalink
Remove rsvp dependency. (ember-fastboot#234)
Browse files Browse the repository at this point in the history
Remove `rsvp` dependency.
  • Loading branch information
rwjblue committed Oct 25, 2019
2 parents f551550 + b63b687 commit 3b13ce1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"debug": "^4.1.1",
"najax": "^1.0.4",
"resolve": "^1.12.0",
"rsvp": "^4.8.0",
"simple-dom": "^1.4.0",
"source-map-support": "^0.5.13"
},
Expand Down
3 changes: 1 addition & 2 deletions test/helpers/test-http-server.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
var express = require('express');
var RSVP = require('rsvp');
var FastBoot = require('./../src/index');

function TestHTTPServer(options) {
Expand All @@ -24,7 +23,7 @@ TestHTTPServer.prototype.start = function() {

app.get('/*', server.middleware());

return new RSVP.Promise(function(resolve) {
return new Promise(function(resolve) {
var listener = app.listen(options.port, options.host, function() {
var host = listener.address().address;
var port = listener.address().port;
Expand Down

0 comments on commit 3b13ce1

Please sign in to comment.