From 63d91c15d19788cd46fe151aa85520c4ee37e4f7 Mon Sep 17 00:00:00 2001 From: Dominik Moritz Date: Wed, 29 Jan 2025 10:14:25 -0500 Subject: [PATCH] chore: remove noisy example test --- test/example.test.ts | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 test/example.test.ts diff --git a/test/example.test.ts b/test/example.test.ts deleted file mode 100644 index 9fce538bac..0000000000 --- a/test/example.test.ts +++ /dev/null @@ -1,22 +0,0 @@ -import {compile} from '../src'; -import {spec} from '../test-runtime/util'; - -test('example test', () => { - const s = spec( - 'unit', - 1, - {type: 'interval', encodings: ['y']}, - { - x: {aggregate: 'count', type: 'quantitative'}, - y: {bin: true}, - color: {value: 'steelblue'} - } - ); - expect(s).toBeDefined(); - - console.log(JSON.stringify(s)); - - const vg = compile(s).spec; - - expect(vg).toBeDefined(); -});