Migrate all remaining fixtures to jest expect
This commit is contained in:
@@ -10,4 +10,4 @@ class Foo extends Bar {
|
||||
}
|
||||
}
|
||||
|
||||
assert.throws(() => new Foo(), /this hasn't been initialised/);
|
||||
expect(() => new Foo()).toThrow("this hasn't been initialised");
|
||||
|
||||
Reference in New Issue
Block a user