Scott Kyle c64524f985 Test that example app loads properly
Re-using the existing React testing class to hook into the example app. Right now, the test is extremely basic but is able to be expanded later.

Resolves #36
2016-02-15 15:47:07 -08:00

16 lines
297 B
JavaScript

/* Copyright 2016 Realm Inc - All Rights Reserved
* Proprietary and Confidential
*/
'use strict';
import {
getRootComponent,
assertChildExists,
} from './util';
export default {
async testTodoAppRendered() {
assertChildExists(await getRootComponent(), 'TodoApp');
},
}