files.com 1.0.213 → 1.0.215

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/test/src/index.js CHANGED
@@ -46,6 +46,7 @@ const testSuite = async () => {
46
46
  Files.configureNetwork({
47
47
  autoPaginate: false,
48
48
  })
49
+
49
50
  const firstPageItems = await Folder.listFor('/', { per_page: 1 })
50
51
 
51
52
  assert(firstPageItems.length === 1)
@@ -53,6 +54,7 @@ const testSuite = async () => {
53
54
  Files.configureNetwork({
54
55
  autoPaginate: true,
55
56
  })
57
+
56
58
  // note: this test will fail if the root folder has <= 1 file or folder
57
59
  const allPageItems = await Folder.listFor('/', { per_page: 1 })
58
60