Skip to content

Commit

Permalink
test: updated test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
HalloSouf committed Apr 16, 2024
1 parent e4dc4b0 commit ae830d2
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"type": "git",
"url": "https://github.com/mcdata-dev/mcdata-data.git"
},
"type": "module",
"author": {
"name": "McData Development",
"url": "https://github.com/mcdata-dev"
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ export * from './colors';
export * from './dimensions';
export * from './effects';
export * from './types';
export * from './games';
2 changes: 1 addition & 1 deletion tests/alphabet.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, test, expect } from 'vitest';
import { alphabet } from '../src/alphabet';
import { alphabet } from '../src';

describe('Test alphabet datastructure', (): void => {
test('Test metadata', (): void => {
Expand Down
2 changes: 1 addition & 1 deletion tests/armor.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, test, expect } from 'vitest';
import { armor } from '../src/armor';
import { armor } from '../src';

describe('Test armor datastructure', (): void => {
test('Test metadata', (): void => {
Expand Down
2 changes: 1 addition & 1 deletion tests/biomes.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, test, expect, expectTypeOf } from 'vitest';
import { biomes } from '../src/biomes';
import { biomes } from '../src';
import { Dimension, Precipitation, StructureTag } from '../src/types';

describe('Test biome datastructure', (): void => {
Expand Down
2 changes: 1 addition & 1 deletion tests/colors.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, test, expect } from 'vitest';
import { colors } from '../src/colors';
import { colors } from '../src';

describe('Test color datastructure', (): void => {
test('Test metadata', (): void => {
Expand Down
2 changes: 1 addition & 1 deletion tests/dimensions.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, test, expect, expectTypeOf } from 'vitest';
import { dimensions } from '../src/dimensions';
import { dimensions } from '../src';
import { BiomeTag } from '../src/types';

describe('Test dimension datastructure', (): void => {
Expand Down
2 changes: 1 addition & 1 deletion tests/effects.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, test, expect, expectTypeOf } from 'vitest';
import { effects } from '../src/effects';
import { effects } from '../src';

describe('Test effect datastructure', (): void => {
test('Test metadata', (): void => {
Expand Down
2 changes: 1 addition & 1 deletion tests/games.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, test, expect, expectTypeOf } from 'vitest';
import { games } from '../src/games';
import { games } from '../src';

describe('Test game datastructure', (): void => {
test('Test metadata', (): void => {
Expand Down
2 changes: 1 addition & 1 deletion tests/versions.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, test, expect } from 'vitest';
import { versions } from '../src/versions';
import { versions } from '../src';

describe('Test version datastructure', (): void => {
test('Test metadata', (): void => {
Expand Down

0 comments on commit ae830d2

Please sign in to comment.