文件操作 - test.js
返回文件管理
返回主菜单
删除本文件
文件: /root/node_modules/has-cors/test.js
编辑文件内容
var expect = require('chai').expect; describe('has-cors', function() { beforeEach(function() { // make sure result is not cached delete require.cache[require.resolve('./')]; }); it('should not have cors', function() { var hasCors = require('./'); expect(hasCors).to.be.false; }); it('should have cors', function() { global.XMLHttpRequest = function() { this.withCredentials = true; }; var hasCors = require('./'); expect(hasCors).to.be.true; }); });
修改文件时间
将文件时间修改为当前时间的前一年
删除文件