blob: 772116682ac77edc9b7f75e65550fb05377b4ab8 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
var test = require('tape');
var Deferred = require('vanadium/src/lib/deferred');
var TravelSync = require('../src/travelsync');
test('init', function(t) {
t.ok(new TravelSync(new Deferred().promise), 'initializes');
t.end();
});