2024-01-02 13:15:50 +00:00
|
|
|
{
|
|
|
|
describe,
|
|
|
|
it,
|
|
|
|
...
|
2024-01-03 10:14:28 +00:00
|
|
|
}: [
|
|
|
|
(describe "the describe function" [
|
|
|
|
(it "returns an array with the message changed" {
|
|
|
|
expected = {
|
|
|
|
component = "the describe function";
|
|
|
|
results = [
|
|
|
|
{
|
|
|
|
success = true;
|
|
|
|
msg = "works";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
actual = describe "the describe function" [
|
|
|
|
{
|
|
|
|
success = true;
|
|
|
|
msg = "works";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
})
|
|
|
|
])
|
2024-01-02 13:15:50 +00:00
|
|
|
]
|