mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
13 lines
217 B
JavaScript
13 lines
217 B
JavaScript
|
const test = require('tap').test;
|
||
|
// const MicroBit = require('../../src/extensions/scratch3_microbit/index.js');
|
||
|
|
||
|
test('displayText', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('displayMatrix', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
// etc...
|