7581b5af9e
* upgrading drift support * updated showports * typos
13 lines
304 B
TypeScript
13 lines
304 B
TypeScript
// EV3 specific test functions
|
|
tests.onEvent(TestEvent.RunSetUp, function() {
|
|
console.sendToScreen();
|
|
})
|
|
tests.onEvent(TestEvent.TestSetUp, function() {
|
|
motors.stopAll();
|
|
motors.resetAll();
|
|
})
|
|
tests.onEvent(TestEvent.TestTearDown, function() {
|
|
motors.stopAll();
|
|
motors.resetAll();
|
|
})
|