You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 24, 2024. It is now read-only.
exports[`new Writer([filePath]) ensures filePath is not an object 1`] =`"Expected 'files' to be of type 'Array' or a 'string', instead got 'undefined'"`;
4
+
5
+
exports[`new Writer([filePath]) ensures filePath[] is an array of strings 1`] =`"Expected 'file' (null) to be of type 'string', instead got 'object'"`;
6
+
7
+
exports[`new Writer([filePath]) ensures filePath[] is not a number 1`] =`"Expected 'files' to be of type 'Array' or a 'string', instead got 'undefined'"`;
8
+
9
+
exports[`new Writer([filePath]) ensures filePath[] is not null 1`] =`"Expected 'files' to be of type 'Array' or a 'string', instead got 'undefined'"`;
10
+
11
+
exports[`new Writer([filePath]) ensures valid filePath provided 1`] =`"Expected 'file' (fake.css) to be an absolute path to a file but it was not"`;
12
+
13
+
exports[`new Writer([filePath]) ensures valid filePaths provided in array 1`] =`"Expected 'file' (fake.css) to be an absolute path to a file but it was not"`;
14
+
15
+
exports[`new Writer(filePath) relative paths throw error 1`] =`"Expected 'file' (./test-assets/my-module-1/main.css) to be an absolute path to a file but it was not"`;
0 commit comments