mirror of
https://github.com/HeyPuter/puter.git
synced 2025-01-25 07:48:40 +08:00
24 lines
612 B
JavaScript
24 lines
612 B
JavaScript
module.exports = [
|
|
{
|
|
sequence: [
|
|
{
|
|
title: 'Kyle creates a file',
|
|
call: 'create-example-file',
|
|
as: 'testuser_kyle',
|
|
with: {
|
|
name: 'example.txt',
|
|
contents: 'secret file',
|
|
}
|
|
},
|
|
{
|
|
title: 'Eric tries to access it',
|
|
call: 'assert-no-access',
|
|
as: 'testuser_eric',
|
|
with: {
|
|
path: '/testuser_kyle/Desktop/example.txt'
|
|
}
|
|
},
|
|
]
|
|
}
|
|
];
|