Update test/unit/engine_runtime.js

Co-Authored-By: paulkaplan <pkaplan@media.mit.edu>
This commit is contained in:
Karishma Chadha 2018-12-05 09:01:35 -05:00 committed by GitHub
parent 6bd2307c99
commit 6420cc8831
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -246,7 +246,7 @@ test('Disposing the runtime emits an event', t => {
rt.addListener('RUNTIME_DISPOSED', () => { rt.addListener('RUNTIME_DISPOSED', () => {
disposed = true; disposed = true;
}); });
rt.start(); rt.dispose();
t.equal(disposed, true); t.equal(disposed, true);
t.end(); t.end();
}); });