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 537fd3d commit 3a166eaCopy full SHA for 3a166ea
spec/regression/Arguments.spec.ts
@@ -1,6 +1,6 @@
1
import test from 'ava'
2
import { Arg } from '../../src'
3
-import { Argument } from '../../src/Arguments'
+import { Argument } from '../../src/shared'
4
5
const testObject = { "foo": "bar" }
6
const testArray = ["a", 1, true]
@@ -107,4 +107,4 @@ test('should not match the argument with the predicate function using Arg.is.not
107
108
t.true(Arg.is.not<string>(x => x === 'foo').matches('bar'))
109
t.true(Arg.is.not<number>(x => x % 2 == 0).matches(3))
110
-})
+})
0 commit comments