@@ -28,65 +28,65 @@ const snapshotResolver: SnapshotResolver = {
2828
2929// resolveSnapshotPath
3030
31- expect < SnapshotResolver > ( ) . type . not . toBeAssignableWith ( {
31+ expect < SnapshotResolver > ( ) . type . not . toBeAssignableFrom ( {
3232 resolveSnapshotPath : ( testPath : string , snapshotExtension : boolean ) =>
3333 'snapshot/path' ,
3434 resolveTestPath : ( ) => 'test/path' ,
3535 testPathForConsistencyCheck : 'test/path/example' ,
3636} ) ;
3737
38- expect < SnapshotResolver > ( ) . type . not . toBeAssignableWith ( {
38+ expect < SnapshotResolver > ( ) . type . not . toBeAssignableFrom ( {
3939 resolveSnapshotPath : ( testPath : boolean ) => 'snapshot/path' ,
4040 resolveTestPath : ( ) => 'test/path' ,
4141 testPathForConsistencyCheck : 'test/path/example' ,
4242} ) ;
4343
44- expect < SnapshotResolver > ( ) . type . not . toBeAssignableWith ( {
44+ expect < SnapshotResolver > ( ) . type . not . toBeAssignableFrom ( {
4545 resolveSnapshotPath : ( ) => true ,
4646 resolveTestPath : ( ) => 'test/path' ,
4747 testPathForConsistencyCheck : 'test/path/example' ,
4848} ) ;
4949
50- expect < SnapshotResolver > ( ) . type . not . toBeAssignableWith ( {
50+ expect < SnapshotResolver > ( ) . type . not . toBeAssignableFrom ( {
5151 resolveTestPath : ( ) => 'test/path' ,
5252 testPathForConsistencyCheck : 'test/path/example' ,
5353} ) ;
5454
5555// resolveTestPath
5656
57- expect < SnapshotResolver > ( ) . type . not . toBeAssignableWith ( {
57+ expect < SnapshotResolver > ( ) . type . not . toBeAssignableFrom ( {
5858 resolveSnapshotPath : ( ) => 'snapshot/path' ,
5959 resolveTestPath : ( snapshotPath : string , snapshotExtension : boolean ) =>
6060 'test/path' ,
6161 testPathForConsistencyCheck : 'test/path/example' ,
6262} ) ;
6363
64- expect < SnapshotResolver > ( ) . type . not . toBeAssignableWith ( {
64+ expect < SnapshotResolver > ( ) . type . not . toBeAssignableFrom ( {
6565 resolveSnapshotPath : ( ) => 'snapshot/path' ,
6666 resolveTestPath : ( snapshotPath : boolean ) => 'test/path' ,
6767 testPathForConsistencyCheck : 'test/path/example' ,
6868} ) ;
6969
70- expect < SnapshotResolver > ( ) . type . not . toBeAssignableWith ( {
70+ expect < SnapshotResolver > ( ) . type . not . toBeAssignableFrom ( {
7171 resolveSnapshotPath : ( ) => 'snapshot/path' ,
7272 resolveTestPath : ( ) => true ,
7373 testPathForConsistencyCheck : 'test/path/example' ,
7474} ) ;
7575
76- expect < SnapshotResolver > ( ) . type . not . toBeAssignableWith ( {
76+ expect < SnapshotResolver > ( ) . type . not . toBeAssignableFrom ( {
7777 resolveSnapshotPath : ( ) => 'snapshot/path' ,
7878 testPathForConsistencyCheck : 'test/path/example' ,
7979} ) ;
8080
8181// testPathForConsistencyCheck
8282
83- expect < SnapshotResolver > ( ) . type . not . toBeAssignableWith ( {
83+ expect < SnapshotResolver > ( ) . type . not . toBeAssignableFrom ( {
8484 resolveSnapshotPath : ( ) => 'snapshot/path' ,
8585 resolveTestPath : ( ) => 'test/path' ,
8686 testPathForConsistencyCheck : true ,
8787} ) ;
8888
89- expect < SnapshotResolver > ( ) . type . not . toBeAssignableWith ( {
89+ expect < SnapshotResolver > ( ) . type . not . toBeAssignableFrom ( {
9090 resolveSnapshotPath : ( ) => 'snapshot/path' ,
9191 resolveTestPath : ( ) => 'test/path' ,
9292} ) ;
0 commit comments