feat: sheet embed support (#1013)

* feat: add basic sheet rendering support

* chore: add missing file

* fix: correct bg colors for none support

* chore: fix test that relied on dark bg

* chore: fix ref

* chore: api spec update

* chore: add todo comments

* chore: use memo

* chore: a bit less verbose

* chore: list

* chore: cleaning

* chore: add rendering test

* chore: enable rendering test

* chore: settings

* chore: settings

* chore: disable rendering tests

* chore: revert test tests
This commit is contained in:
Tobias Åström
2022-12-12 13:54:04 +01:00
committed by GitHub
parent f644c35e1b
commit 3dacac587b
26 changed files with 689 additions and 36 deletions

View File

@@ -1,4 +1,4 @@
const { execSync } = require('child_process');
const cmd = 'mocha test/rendering/listbox/listbox.spec.js --bail false --timeout 30000';
const cmd = 'mocha test/rendering/**/*.spec.js --bail false --timeout 30000';
execSync(cmd, { stdio: 'inherit' });