We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4933b1 commit c367c20Copy full SHA for c367c20
test/data/data.test.ts
@@ -0,0 +1,11 @@
1
+import { expect } from 'chai'
2
+import { MolangData } from '../../src/main';
3
+
4
+describe("data sanity check", () => {
5
+ it("Blocks", () => expect(MolangData.Blocks).to.not.be.undefined);
6
+ it("Entities", () => expect(MolangData.Entities).to.not.be.undefined);
7
+ it("FeaturesRules", () => expect(MolangData.FeaturesRules).to.not.be.undefined);
8
+ it("General", () => expect(MolangData.General).to.not.be.undefined);
9
+ it("Items", () => expect(MolangData.Items).to.not.be.undefined);
10
+ it("Particle", () => expect(MolangData.Particle).to.not.be.undefined);
11
+})
0 commit comments