33describe ( "readCSV" , function ( ) {
44 this . timeout ( 10000 ) ;
55 it ( "Read remote csv file works" , async function ( ) {
6- const remoteFile = "https://raw.githubusercontent.com/opensource9ja /danfojs/dev/danfojs-node/tests /samples/titanic.csv" ;
6+ const remoteFile = "https://raw.githubusercontent.com/javascriptdata /danfojs/dev/src/ danfojs-node/test /samples/titanic.csv" ;
77 let df = await dfd . readCSV ( remoteFile , { header : true , preview : 5 } ) ;
88 assert . deepEqual ( df . shape , [ 5 , 8 ] ) ;
99 assert . deepEqual ( df . columns , [
@@ -25,7 +25,7 @@ describe("readCSV", function () {
2525 } ) ;
2626
2727 it ( "Read remote csv file with config works" , async function ( ) {
28- const remoteFile = "https://raw.githubusercontent.com/opensource9ja /danfojs/dev/danfojs-node/tests /samples/titanic.csv" ;
28+ const remoteFile = "https://raw.githubusercontent.com/javascriptdata /danfojs/dev/src/ danfojs-node/test /samples/titanic.csv" ;
2929 const frameConfig = {
3030 columns : [
3131 'A' ,
@@ -64,7 +64,7 @@ describe("readCSV", function () {
6464// this.timeout(100000);
6565
6666// it("Streaming remote csv file with callback works", async function () {
67- // const remoteFile = "https://raw.githubusercontent.com/opensource9ja /danfojs/dev/danfojs-node/tests /samples/titanic.csv";
67+ // const remoteFile = "https://raw.githubusercontent.com/javascriptdata /danfojs/dev/src/ danfojs-node/test /samples/titanic.csv";
6868// await dfd.streamCSV(remoteFile, (df) => {
6969// if (df) {
7070// assert.deepEqual(df.shape, [ 1, 8 ]);
0 commit comments