Skip to content

Commit 6e9f4f1

Browse files
committed
Merge branch 'develop'
2 parents 1e259cc + e87482e commit 6e9f4f1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

utils/testUtils.ts renamed to src/utils/testUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { UnknownError } from "../src/lib/Exceptions/UnknownError"
1+
import { UnknownError } from '../lib/Exceptions/UnknownError'
22

33
export const expectErrorClass = (fn: () => void, ErrorClass: unknown) => {
44
try {

tests/install.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { OptionsMissingPluginError } from '../src/lib/Exceptions/OptionsMissingP
55
// types
66
import { Vue } from '../src/types/VueTypes'
77
// test utils
8-
import { expectErrorClass } from '../utils/testUtils'
8+
import { expectErrorClass } from '../src/utils/testUtils'
99

1010
describe('installation checks', () => {
1111
const dummyVue: Vue = {}

tests/testUtils.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { UnknownError } from '../src/lib/Exceptions/UnknownError'
2-
import { expectErrorClass } from '../utils/testUtils'
2+
import { expectErrorClass } from '../src/utils/testUtils'
33

44
describe('test utils', () => {
55
it('throws Exception if expected error not thrown', () => {

0 commit comments

Comments
 (0)