mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-05-19 09:51:13 -04:00
fix: disable metadata for now
This commit is contained in:
parent
19450906e6
commit
95912963ce
2 changed files with 7 additions and 5 deletions
test/integration
|
@ -1,6 +1,6 @@
|
|||
const Worker = require('tiny-worker');
|
||||
const path = require('path');
|
||||
const test = require('tap').test;
|
||||
const test = require('tap');
|
||||
|
||||
const VirtualMachine = require('../../src/index');
|
||||
const dispatch = require('../../src/dispatch/central-dispatch');
|
||||
|
@ -15,7 +15,8 @@ const project = readFileToBuffer(uri);
|
|||
// By default Central Dispatch works with the Worker class built into the browser. Tell it to use TinyWorker instead.
|
||||
dispatch.workerClass = Worker;
|
||||
|
||||
test('runId', async t => {
|
||||
// TODO: re-enable metadata
|
||||
test.skip('runId', async t => {
|
||||
const guidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/;
|
||||
const isGuid = data => guidRegex.test(data);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue