mirror of
https://github.com/appium/appium.git
synced 2026-05-02 08:19:52 -05:00
18 lines
362 B
JavaScript
18 lines
362 B
JavaScript
/*global describe:true, it:true */
|
|
"use strict";
|
|
|
|
var rest = require('express')()
|
|
, appium = require('../../lib/appium');
|
|
|
|
describe('Appium', function() {
|
|
var inst = appium({});
|
|
rest.use(rest.router);
|
|
|
|
describe('#attachTo', function() {
|
|
return it('should get valid routes', function(done) {
|
|
inst.attachTo(rest);
|
|
done();
|
|
});
|
|
});
|
|
});
|