webrtc-adapter-test
Version:
Hide browser differences in WebRTC APIs (test package name)
30 lines (25 loc) • 719 B
JavaScript
/*
* Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree.
*/
/* jshint node: true */
/* globals require */
;
var test = require('tape');
// Add all test files here with a short comment.
// Checks that the tests can start and that execution finishes.
require('./test');
// This is run as a test so it is executed after all tests
// have completed.
test('Shutdown', function(t) {
var driver = require('./selenium-lib').buildDriver();
driver.close()
.then(function() {
driver.quit().then(function() {
t.end();
});
});
});